Skip to content

Commit 4483e51

Browse files
committed
fix: use base0A for highlight color
1 parent 75560f2 commit 4483e51

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/components/DataKeyPair.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ export const DataKeyPair: FC<DataKeyPairProps> = (props) => {
7474
const onChange = useJsonViewerStore(store => store.onChange)
7575
const keyColor = useTextColor()
7676
const numberKeyColor = useJsonViewerStore(store => store.colorspace.base0C)
77-
const highlightColor = useJsonViewerStore(store => store.colorspace.base0F)
77+
const highlightColor = useJsonViewerStore(store => store.colorspace.base0A)
7878
const { Component, PreComponent, PostComponent, Editor } = useTypeComponents(value, path)
7979
const quotesOnKeys = useJsonViewerStore(store => store.quotesOnKeys)
8080
const rootName = useJsonViewerStore(store => store.rootName)

src/theme/base16.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ export const lightColorspace: NamedColorspace = {
3535
base07: '#002b36',
3636
base08: '#d33682',
3737
base09: '#cb4b16',
38-
base0A: '#dc322f',
38+
base0A: '#ffd500',
3939
base0B: '#859900',
4040
base0C: '#6c71c4',
4141
base0D: '#586e75',

0 commit comments

Comments
 (0)