fix: improve functions colors
This commit is contained in:
parent
e241a62161
commit
fa5322f319
1 changed files with 3 additions and 3 deletions
|
@ -15,7 +15,7 @@ export const getColorSet = (theme: ThemeSetting): IColorSet => {
|
||||||
// Determines functionCall and number
|
// Determines functionCall and number
|
||||||
color4: theme.scheme.base.paleblue,
|
color4: theme.scheme.base.paleblue,
|
||||||
// Determines the overall text foreground color
|
// Determines the overall text foreground color
|
||||||
foreground: theme.scheme.base.white
|
foreground: theme.scheme.foreground
|
||||||
},
|
},
|
||||||
/**
|
/**
|
||||||
* Overrides specific syntax scopes provided
|
* Overrides specific syntax scopes provided
|
||||||
|
@ -23,14 +23,14 @@ export const getColorSet = (theme: ThemeSetting): IColorSet => {
|
||||||
*/
|
*/
|
||||||
syntax: {
|
syntax: {
|
||||||
boolean: theme.scheme.base.pink,
|
boolean: theme.scheme.base.pink,
|
||||||
class: theme.scheme.base.violet,
|
class: theme.scheme.base.purple,
|
||||||
classMember: theme.scheme.base.red,
|
classMember: theme.scheme.base.red,
|
||||||
comment: theme.scheme.comments,
|
comment: theme.scheme.comments,
|
||||||
cssClass: theme.scheme.base.yellow,
|
cssClass: theme.scheme.base.yellow,
|
||||||
cssId: theme.scheme.base.orange,
|
cssId: theme.scheme.base.orange,
|
||||||
cssTag: theme.scheme.base.yellow,
|
cssTag: theme.scheme.base.yellow,
|
||||||
function: theme.scheme.base.yellow,
|
function: theme.scheme.base.yellow,
|
||||||
functionCall: theme.scheme.base.violet,
|
functionCall: theme.scheme.base.blue,
|
||||||
identifier: theme.scheme.base.cyan,
|
identifier: theme.scheme.base.cyan,
|
||||||
keyword: theme.scheme.base.red,
|
keyword: theme.scheme.base.red,
|
||||||
storage: theme.scheme.foreground,
|
storage: theme.scheme.foreground,
|
||||||
|
|
Loading…
Reference in a new issue