From fa5322f319ddec67ae18faeaac57f37b7393f4ca Mon Sep 17 00:00:00 2001 From: Mattia Astorino Date: Tue, 7 Jan 2020 10:09:15 +0100 Subject: [PATCH] fix: improve functions colors --- scripts/generator/color-set.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/scripts/generator/color-set.ts b/scripts/generator/color-set.ts index 97e1499..4b76e2a 100644 --- a/scripts/generator/color-set.ts +++ b/scripts/generator/color-set.ts @@ -15,7 +15,7 @@ export const getColorSet = (theme: ThemeSetting): IColorSet => { // Determines functionCall and number color4: theme.scheme.base.paleblue, // Determines the overall text foreground color - foreground: theme.scheme.base.white + foreground: theme.scheme.foreground }, /** * Overrides specific syntax scopes provided @@ -23,14 +23,14 @@ export const getColorSet = (theme: ThemeSetting): IColorSet => { */ syntax: { boolean: theme.scheme.base.pink, - class: theme.scheme.base.violet, + class: theme.scheme.base.purple, classMember: theme.scheme.base.red, comment: theme.scheme.comments, cssClass: theme.scheme.base.yellow, cssId: theme.scheme.base.orange, cssTag: theme.scheme.base.yellow, function: theme.scheme.base.yellow, - functionCall: theme.scheme.base.violet, + functionCall: theme.scheme.base.blue, identifier: theme.scheme.base.cyan, keyword: theme.scheme.base.red, storage: theme.scheme.foreground,