Skip to content

Commit

Permalink
fix: ui selectionBackground
Browse files Browse the repository at this point in the history
  • Loading branch information
loosheng committed Jan 28, 2024
1 parent 748e6b3 commit b9c4e7c
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 12 deletions.
4 changes: 2 additions & 2 deletions script/theme.ts
Original file line number Diff line number Diff line change
Expand Up @@ -648,9 +648,9 @@ export default function getEditorSchemeTheme(options: GetThemeOptions) {
hoverBackground: activeBackground,

selectionForeground: foreground,
selectionBackground: selectionBackground2,
selectionBackground: selectionBackground,
selectionInactiveForeground: foreground,
selectionInactiveBackground: selectionBackground2,
selectionInactiveBackground: selectionBackground,

focusColor: v('primary', '80'),

Expand Down
4 changes: 2 additions & 2 deletions src/main/resources/themes/vitesse.black.theme.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@
"lightSelectionBackground": "#121212",
"hoverBackground": "#121212",
"selectionForeground": "#dbd7cacc",
"selectionBackground": "#383838",
"selectionBackground": "#22222215",
"selectionInactiveForeground": "#dbd7cacc",
"selectionInactiveBackground": "#383838",
"selectionInactiveBackground": "#22222215",
"focusColor": "#4d937580",
"infoForeground": "#758575dd",
"primaryText": "#4d9375"
Expand Down
4 changes: 2 additions & 2 deletions src/main/resources/themes/vitesse.dark.soft.theme.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@
"lightSelectionBackground": "#292929",
"hoverBackground": "#292929",
"selectionForeground": "#dbd7caee",
"selectionBackground": "#383838",
"selectionBackground": "#22222215",
"selectionInactiveForeground": "#dbd7caee",
"selectionInactiveBackground": "#383838",
"selectionInactiveBackground": "#22222215",
"focusColor": "#4d937580",
"infoForeground": "#758575dd",
"primaryText": "#4d9375"
Expand Down
4 changes: 2 additions & 2 deletions src/main/resources/themes/vitesse.dark.theme.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@
"lightSelectionBackground": "#181818",
"hoverBackground": "#181818",
"selectionForeground": "#dbd7caee",
"selectionBackground": "#383838",
"selectionBackground": "#22222215",
"selectionInactiveForeground": "#dbd7caee",
"selectionInactiveBackground": "#383838",
"selectionInactiveBackground": "#22222215",
"focusColor": "#4d937580",
"infoForeground": "#758575dd",
"primaryText": "#4d9375"
Expand Down
4 changes: 2 additions & 2 deletions src/main/resources/themes/vitesse.light.soft.theme.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@
"lightSelectionBackground": "#E7E5DB",
"hoverBackground": "#E7E5DB",
"selectionForeground": "#393a34",
"selectionBackground": "#d3d3d3",
"selectionBackground": "#eeeeee15",
"selectionInactiveForeground": "#393a34",
"selectionInactiveBackground": "#d3d3d3",
"selectionInactiveBackground": "#eeeeee15",
"focusColor": "#1c6b4880",
"infoForeground": "#a0ada0",
"primaryText": "#1c6b48"
Expand Down
4 changes: 2 additions & 2 deletions src/main/resources/themes/vitesse.light.theme.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@
"lightSelectionBackground": "#f7f7f7",
"hoverBackground": "#f7f7f7",
"selectionForeground": "#393a34",
"selectionBackground": "#d3d3d3",
"selectionBackground": "#eeeeee15",
"selectionInactiveForeground": "#393a34",
"selectionInactiveBackground": "#d3d3d3",
"selectionInactiveBackground": "#eeeeee15",
"focusColor": "#1c6b4880",
"infoForeground": "#a0ada0",
"primaryText": "#1c6b48"
Expand Down

0 comments on commit b9c4e7c

Please sign in to comment.