Skip to content

Commit 465871b

Browse files
authored
Merge pull request #30 from chaseadamsio/listHighlighting
fix list highlighting
2 parents 7f72aad + 258faf3 commit 465871b

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

src/colors/base.js

+1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ import type {Palette} from '../types'
88
const baseColors = (palette /*: Palette */) => ({
99
foreground: palette.white,
1010
focusBorder: palette.magenta77,
11+
contrastBorder: palette.magenta77,
1112
"widget.shadow": palette.black,
1213
"selection.background": palette.magenta33,
1314
descriptionForeground: palette.white,

src/colors/editor-widget.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,8 @@ const editorWidget = (palette /*: Palette */) => ({
1111
"editorSuggestWidget.background": palette.black,
1212
"editorSuggestWidget.foreground": palette.white,
1313
"editorSuggestWidget.highlightForeground": palette.magenta,
14-
"editorSuggestWidget.selectedBackground": palette.black,
14+
"editorSuggestWidget.selectedBackground": palette.blackest,
15+
"editorHoverWidget.background": palette.blackest,
1516
// editor marker navigation
1617
"editorMarkerNavigation.background": palette.black,
1718
"editorMarkerNavigationError.background": palette.red,

src/colors/quick-input.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import type {Palette} from '../types'
66

77
// https://code.visualstudio.com/api/references/theme-color#quick-picker
88
const quickInput = (palette /*: Palette */) => ({
9-
"quickInput.background": palette.blackest,
9+
"quickInput.background": palette.black,
1010
"quickInput.foreground": palette.white
1111
});
1212

0 commit comments

Comments
 (0)