File tree 3 files changed +4
-2
lines changed
3 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -8,6 +8,7 @@ import type {Palette} from '../types'
8
8
const baseColors = ( palette /*: Palette */ ) => ( {
9
9
foreground : palette . white ,
10
10
focusBorder : palette . magenta77 ,
11
+ contrastBorder : palette . magenta77 ,
11
12
"widget.shadow" : palette . black ,
12
13
"selection.background" : palette . magenta33 ,
13
14
descriptionForeground : palette . white ,
Original file line number Diff line number Diff line change @@ -11,7 +11,8 @@ const editorWidget = (palette /*: Palette */) => ({
11
11
"editorSuggestWidget.background" : palette . black ,
12
12
"editorSuggestWidget.foreground" : palette . white ,
13
13
"editorSuggestWidget.highlightForeground" : palette . magenta ,
14
- "editorSuggestWidget.selectedBackground" : palette . black ,
14
+ "editorSuggestWidget.selectedBackground" : palette . blackest ,
15
+ "editorHoverWidget.background" : palette . blackest ,
15
16
// editor marker navigation
16
17
"editorMarkerNavigation.background" : palette . black ,
17
18
"editorMarkerNavigationError.background" : palette . red ,
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ import type {Palette} from '../types'
6
6
7
7
// https://code.visualstudio.com/api/references/theme-color#quick-picker
8
8
const quickInput = ( palette /*: Palette */ ) => ( {
9
- "quickInput.background" : palette . blackest ,
9
+ "quickInput.background" : palette . black ,
10
10
"quickInput.foreground" : palette . white
11
11
} ) ;
12
12
You can’t perform that action at this time.
0 commit comments