Merge pull request #39 from this-fifo/master

Add peekViewEditor colors for dark theme
This commit is contained in:
simurai 2020-05-18 20:38:25 +09:00 committed by GitHub
commit 694ce28581
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 10 additions and 0 deletions

View file

@ -179,6 +179,12 @@ function getTheme({ style, name }) {
"debugToolBar.background": pick({ light: primer.white, dark: "#2b3036" }),
"editor.stackFrameHighlightBackground": primer.yellow[1],
"editor.focusedStackFrameHighlightBackground": primer.yellow[2],
"peekViewEditor.matchHighlightBackground": pick({ dark: "#ffd33d33" }),
"peekViewResult.matchHighlightBackground": pick({ dark: "#ffd33d33" }),
"peekViewEditor.background": pick({ dark: "#1f242888" }),
"peekViewResult.background": pick({ dark: "#1f2428" }),
"settings.headerForeground": primer.gray[9],
"settings.modifiedItemIndicator": primer.blue[4],
"welcomePage.buttonBackground": primer.gray[1],

View file

@ -141,6 +141,10 @@
"debugToolBar.background": "#2b3036",
"editor.stackFrameHighlightBackground": "#b08800",
"editor.focusedStackFrameHighlightBackground": "#dbab09",
"peekViewEditor.matchHighlightBackground": "#ffd33d33",
"peekViewResult.matchHighlightBackground": "#ffd33d33",
"peekViewEditor.background": "#1f242888",
"peekViewResult.background": "#1f2428",
"settings.headerForeground": "#fafbfc",
"settings.modifiedItemIndicator": "#0366d6",
"welcomePage.buttonBackground": "#2f363d",