Skip to content

Commit aa703c6

Browse files
authoredNov 17, 2022
fix(theme): Fix foreground and function name colors (#412)
1 parent f2e5c5c commit aa703c6

File tree

1 file changed

+1
-11
lines changed

1 file changed

+1
-11
lines changed
 

‎themes/vscode/src/index.ts

+1-11
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ export const vscodeDark = createTheme({
88
theme: 'dark',
99
settings: {
1010
background: '#1e1e1e',
11-
foreground: '#CECFD0',
11+
foreground: '#9cdcfe',
1212
caret: '#c6c6c6',
1313
selection: '#6199ff2f',
1414
selectionMatch: '#72a1ff59',
@@ -18,16 +18,6 @@ export const vscodeDark = createTheme({
1818
gutterActiveForeground: '#fff',
1919
},
2020
styles: [
21-
{ tag: [t.comment, t.quote], color: '#707F8D' },
22-
{ tag: [t.typeName, t.typeOperator], color: '#aa0d91' },
23-
{ tag: [t.keyword], color: '#569cd6', fontWeight: 'bold' },
24-
{ tag: [t.string, t.meta], color: '#D23423' },
25-
{ tag: [t.name], color: '#032f62' },
26-
{ tag: [t.typeName], color: '#522BB2' },
27-
{ tag: [t.variableName], color: '#23575C' },
28-
{ tag: [t.definition(t.variableName)], color: '#327A9E' },
29-
{ tag: [t.regexp, t.link], color: '#0e0eff' },
30-
3121
{ tag: t.keyword, color: '#569cd6' },
3222
{
3323
tag: [t.controlKeyword, t.moduleKeyword],

0 commit comments

Comments
 (0)
Please sign in to comment.