fix: improve functions colors

This commit is contained in:
Mattia Astorino 2020-01-07 10:09:15 +01:00
parent e241a62161
commit fa5322f319
No known key found for this signature in database
GPG key ID: CDFA82D8B1132C65

View file

@ -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,