Skip to content

Commit

Permalink
chore: json editor color
Browse files Browse the repository at this point in the history
  • Loading branch information
jaybuidl committed Feb 5, 2024
1 parent c760ce8 commit d05bbfd
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions web/src/components/JSONEditor.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,9 @@ const Container = styled.div`
--jse-background-color: ${({ theme }) => theme.whiteBackground};
--jse-panel-background: ${({ theme }) => theme.hoveredShadow};
--jse-theme-color-highlight: ${({ theme }) => theme.lightPurple};
--jse-value-color-string: ${({ theme }) => theme.primaryText};
--jse-value-color-number: ${({ theme }) => theme.primaryBlue};
--jse-value-color-null: ${({ theme }) => theme.error};
--jse-main-border: 1px solid ${({ theme }) => theme.stroke};
--jse-key-color: ${({ theme }) => theme.tint};
--jse-value-color: ${({ theme }) => theme.success};
Expand Down

0 comments on commit d05bbfd

Please sign in to comment.