diff --git a/scripts/generator/color-set.ts b/scripts/generator/color-set.ts index 3bec876..5b6c8f7 100644 --- a/scripts/generator/color-set.ts +++ b/scripts/generator/color-set.ts @@ -46,6 +46,16 @@ export const getColorSet = (theme: ThemeSetting): IColorSet => { * Override all syntax tokens */ customTokens: [ + { + name: 'Keyword Control', + scope: [ + 'keyword.control' + ], + settings: { + foreground: theme.scheme.base.cyan, + fontStyle: 'italic' + } + }, { name: 'Markdown - Blockquote', scope: [ @@ -74,25 +84,6 @@ export const getColorSet = (theme: ThemeSetting): IColorSet => { foreground: theme.scheme.base.pink } }, - { - name: 'Other Keywords', - scope: [ - 'keyword.other' - ], - settings: { - foreground: theme.scheme.base.orange - } - }, - { - name: 'Keyword Control', - scope: [ - 'keyword.control' - ], - settings: { - foreground: theme.scheme.base.cyan, - fontStyle: 'italic' - } - }, { name: 'JSON Key - Level 0', scope: [