Skip to content

Commit

Permalink
fix: fix the color of list.focusBackground is not obvious (#30)
Browse files Browse the repository at this point in the history
  • Loading branch information
Kaivan Wong committed Mar 3, 2024
1 parent 75784c0 commit 5e98112
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion scripts/theme.ts
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ export default function getTheme(options: GetThemeOptions) {
'list.inactiveSelectionBackground': activeBackground,
'list.activeSelectionBackground': activeBackground,
'list.inactiveFocusBackground': background,
'list.focusBackground': activeBackground,
'list.focusBackground': background,
'list.highlightForeground': primary,

'tree.indentGuidesStroke': pick({ light: colors.gray[2], dark: colors.gray[1] }),
Expand Down
2 changes: 1 addition & 1 deletion themes/vitesse-black.json
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@
"list.inactiveSelectionBackground": "#121212",
"list.activeSelectionBackground": "#121212",
"list.inactiveFocusBackground": "#000",
"list.focusBackground": "#121212",
"list.focusBackground": "#000",
"list.highlightForeground": "#4d9375",
"tree.indentGuidesStroke": "#2f363d",
"notificationCenterHeader.foreground": "#959da5",
Expand Down
2 changes: 1 addition & 1 deletion themes/vitesse-dark-soft.json
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@
"list.inactiveSelectionBackground": "#292929",
"list.activeSelectionBackground": "#292929",
"list.inactiveFocusBackground": "#222",
"list.focusBackground": "#292929",
"list.focusBackground": "#222",
"list.highlightForeground": "#4d9375",
"tree.indentGuidesStroke": "#2f363d",
"notificationCenterHeader.foreground": "#959da5",
Expand Down
2 changes: 1 addition & 1 deletion themes/vitesse-dark.json
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@
"list.inactiveSelectionBackground": "#181818",
"list.activeSelectionBackground": "#181818",
"list.inactiveFocusBackground": "#121212",
"list.focusBackground": "#181818",
"list.focusBackground": "#121212",
"list.highlightForeground": "#4d9375",
"tree.indentGuidesStroke": "#2f363d",
"notificationCenterHeader.foreground": "#959da5",
Expand Down
2 changes: 1 addition & 1 deletion themes/vitesse-light-soft.json
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@
"list.inactiveSelectionBackground": "#E7E5DB",
"list.activeSelectionBackground": "#E7E5DB",
"list.inactiveFocusBackground": "#F1F0E9",
"list.focusBackground": "#E7E5DB",
"list.focusBackground": "#F1F0E9",
"list.highlightForeground": "#1c6b48",
"tree.indentGuidesStroke": "#e1e4e8",
"notificationCenterHeader.foreground": "#6a737d",
Expand Down
2 changes: 1 addition & 1 deletion themes/vitesse-light.json
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@
"list.inactiveSelectionBackground": "#f7f7f7",
"list.activeSelectionBackground": "#f7f7f7",
"list.inactiveFocusBackground": "#ffffff",
"list.focusBackground": "#f7f7f7",
"list.focusBackground": "#ffffff",
"list.highlightForeground": "#1c6b48",
"tree.indentGuidesStroke": "#e1e4e8",
"notificationCenterHeader.foreground": "#6a737d",
Expand Down

0 comments on commit 5e98112

Please sign in to comment.