Skip to content

Commit

Permalink
feat: menu separator color (#20)
Browse files Browse the repository at this point in the history
  • Loading branch information
vinhphm committed Feb 27, 2023
1 parent 6f9a5d7 commit 942fc23
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 5 deletions.
2 changes: 2 additions & 0 deletions src/theme.ts
Original file line number Diff line number Diff line change
Expand Up @@ -256,6 +256,8 @@ export default function getTheme({ style, name, soft = false, black = false }) {

'editorStickyScroll.background': activeBackground,
'editorStickyScrollHover.background': activeBackground,

'menu.separatorBackground': border,
},
semanticHighlighting: true,
semanticTokenColors: {
Expand Down
3 changes: 2 additions & 1 deletion themes/vitesse-black.json
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,8 @@
"editorInlayHint.foreground": "#666666",
"editorInlayHint.background": "#00000000",
"editorStickyScroll.background": "#050505",
"editorStickyScrollHover.background": "#050505"
"editorStickyScrollHover.background": "#050505",
"menu.separatorBackground": "#191919"
},
"semanticHighlighting": true,
"semanticTokenColors": {
Expand Down
3 changes: 2 additions & 1 deletion themes/vitesse-dark-soft.json
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,8 @@
"editorInlayHint.foreground": "#666666",
"editorInlayHint.background": "#00000000",
"editorStickyScroll.background": "#292929",
"editorStickyScrollHover.background": "#292929"
"editorStickyScrollHover.background": "#292929",
"menu.separatorBackground": "#252525"
},
"semanticHighlighting": true,
"semanticTokenColors": {
Expand Down
3 changes: 2 additions & 1 deletion themes/vitesse-dark.json
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,8 @@
"editorInlayHint.foreground": "#666666",
"editorInlayHint.background": "#00000000",
"editorStickyScroll.background": "#181818",
"editorStickyScrollHover.background": "#181818"
"editorStickyScrollHover.background": "#181818",
"menu.separatorBackground": "#191919"
},
"semanticHighlighting": true,
"semanticTokenColors": {
Expand Down
3 changes: 2 additions & 1 deletion themes/vitesse-light-soft.json
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,8 @@
"editorInlayHint.foreground": "#999999",
"editorInlayHint.background": "#00000000",
"editorStickyScroll.background": "#E7E5DB",
"editorStickyScrollHover.background": "#E7E5DB"
"editorStickyScrollHover.background": "#E7E5DB",
"menu.separatorBackground": "#E7E5DB"
},
"semanticHighlighting": true,
"semanticTokenColors": {
Expand Down
3 changes: 2 additions & 1 deletion themes/vitesse-light.json
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,8 @@
"editorInlayHint.foreground": "#999999",
"editorInlayHint.background": "#00000000",
"editorStickyScroll.background": "#f7f7f7",
"editorStickyScrollHover.background": "#f7f7f7"
"editorStickyScrollHover.background": "#f7f7f7",
"menu.separatorBackground": "#f0f0f0"
},
"semanticHighlighting": true,
"semanticTokenColors": {
Expand Down

0 comments on commit 942fc23

Please sign in to comment.