Skip to content

Commit 4dcc32b

Browse files
committedNov 26, 2023
style(theme): modify kimbie/material/monokai/nord/noctis selection color. (#609)
1 parent fd8b344 commit 4dcc32b

File tree

6 files changed

+15
-15
lines changed

6 files changed

+15
-15
lines changed
 

‎themes/kimbie/src/color.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ export const config = {
55
selectionMatch: '#84613daa',
66
cursor: '#d3af86',
77
dropdownBackground: '#51412c',
8-
activeLine: '#5e452b',
8+
activeLine: '#5e452b52',
99
matchingBracket: '#5e452b',
1010
keyword: '#98676a',
1111
storage: '#98676a',

‎themes/material/src/index.ts

+4-4
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@ export const defaultSettingsMaterial: CreateThemeOptions['settings'] = {
55
background: '#2e3235',
66
foreground: '#bdbdbd',
77
caret: '#a0a4ae',
8-
selection: '#d7d4f0',
9-
selectionMatch: '#d7d4f0',
8+
selection: '#d7d4f063',
9+
selectionMatch: '#d7d4f063',
1010
gutterBackground: '#2e3235',
1111
gutterForeground: '#999',
1212
gutterActiveForeground: '#4f5b66',
13-
lineHighlight: '#545b61',
13+
lineHighlight: '#545b6130',
1414
};
1515

1616
export const defaultSettingsMaterialDark = defaultSettingsMaterial;
@@ -131,7 +131,7 @@ export const defaultSettingsMaterialLight: CreateThemeOptions['settings'] = {
131131
foreground: '#90A4AE',
132132
caret: '#272727',
133133
selection: '#80CBC440',
134-
selectionMatch: '#FAFAFA',
134+
selectionMatch: '#80CBC440',
135135
gutterBackground: '#FAFAFA',
136136
gutterForeground: '#90A4AE',
137137
gutterBorder: 'transparent',

‎themes/monokai-dimmed/src/color.ts

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
export const config = {
22
background: '#1e1e1e',
33
foreground: '#c5c8c6',
4-
selection: '#4747a180',
5-
selectionMatch: '#6767ce80',
4+
selection: '#4747a1',
5+
selectionMatch: '#4747a1',
66
cursor: '#c07020',
77
dropdownBackground: '#525252',
8-
activeLine: '#303030',
8+
activeLine: '#30303078',
99
matchingBracket: '#303030',
1010
keyword: '#676867',
1111
storage: '#676867',

‎themes/monokai/src/color.ts

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
export const config = {
22
background: '#272822',
33
foreground: '#f8f8f2',
4-
selection: '#4a4a7680',
5-
selectionMatch: '#6a6a9680',
4+
selection: '#4a4a76',
5+
selectionMatch: '#4a4a76',
66
cursor: '#f8f8f0',
77
dropdownBackground: '#414339',
8-
activeLine: '#3e3d32',
8+
activeLine: '#3e3d3257',
99
matchingBracket: '#3e3d32',
1010
keyword: '#F92672',
1111
storage: '#F92672',

‎themes/noctis-lilac/src/index.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ export const defaultSettingsNoctisLilac: CreateThemeOptions['settings'] = {
99
selectionMatch: '#d5d1f2',
1010
gutterBackground: '#f2f1f8',
1111
gutterForeground: '#0c006b70',
12-
lineHighlight: '#e1def3',
12+
lineHighlight: '#16067911',
1313
};
1414

1515
export const noctisLilacInit = (options?: Partial<CreateThemeOptions>) => {

‎themes/nord/src/index.ts

+3-3
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@ export const defaultSettingsNord: CreateThemeOptions['settings'] = {
55
background: '#2e3440',
66
foreground: '#FFFFFF',
77
caret: '#FFFFFF',
8-
selection: '#3b4252',
9-
selectionMatch: '#e5e9f0',
8+
selection: '#4b556a',
9+
selectionMatch: '#4b556a',
1010
gutterBackground: '#2e3440',
1111
gutterForeground: '#4c566a',
1212
gutterActiveForeground: '#d8dee9',
13-
lineHighlight: '#4c566a',
13+
lineHighlight: '#4c566a29',
1414
};
1515

1616
// Colors from https://www.nordtheme.com/docs/colors-and-palettes

0 commit comments

Comments
 (0)
Please sign in to comment.