Skip to content

Commit 04f21fc

Browse files
committedNov 26, 2023
style(theme): modify white/tokyo/tomorrow selection color. (#609)
1 parent 33e1b98 commit 04f21fc

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed
 

‎themes/tokyo-night-storm/src/index.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,11 @@ export const defaultSettingsTokyoNightStorm: CreateThemeOptions['settings'] = {
66
foreground: '#7982a9',
77
caret: '#c0caf5',
88
selection: '#6f7bb630',
9-
selectionMatch: '#1f2335',
9+
selectionMatch: '#343b5f',
1010
gutterBackground: '#24283b',
1111
gutterForeground: '#7982a9',
1212
gutterBorder: 'transparent',
13-
lineHighlight: '#292e42',
13+
lineHighlight: '#292e427a',
1414
};
1515

1616
export const tokyoNightStormInit = (options?: Partial<CreateThemeOptions>) => {

‎themes/tokyo-night/src/index.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ export const defaultSettingsTokyoNight: CreateThemeOptions['settings'] = {
1010
gutterBackground: '#1a1b26',
1111
gutterForeground: '#787c99',
1212
gutterBorder: 'transparent',
13-
lineHighlight: '#1e202e',
13+
lineHighlight: '#474b6611',
1414
};
1515

1616
export const tokyoNightInit = (options?: Partial<CreateThemeOptions>) => {

‎themes/tomorrow-night-blue/src/color.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ export const config = {
55
selectionMatch: '#003f8e',
66
cursor: '#ffffff',
77
dropdownBackground: '#001733',
8-
activeLine: '#00346e',
8+
activeLine: '#00346e7a',
99
matchingBracket: '#00346e',
1010
keyword: '#EBBBFF',
1111
storage: '#EBBBFF',

‎themes/white/src/dark-color.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ export const config = {
66
cursor: '#7d46fc',
77
dropdownBackground: '#0a0b0f',
88
dropdownBorder: '#1e1d27',
9-
activeLine: '#7d46fc14',
9+
activeLine: '#00346eb0',
1010
matchingBracket: '#7d46fc7f',
1111
keyword: null,
1212
storage: null,

0 commit comments

Comments
 (0)
Please sign in to comment.