From 6c31bfd4dd320d1cd3810054a60556a109483ba1 Mon Sep 17 00:00:00 2001 From: Mattia Astorino Date: Mon, 6 Jan 2020 17:11:18 +0100 Subject: [PATCH] scheme: Fix punctuation --- scripts/generator/color-set.ts | 22 ++++++++++------------ 1 file changed, 10 insertions(+), 12 deletions(-) diff --git a/scripts/generator/color-set.ts b/scripts/generator/color-set.ts index c077e07..559687d 100644 --- a/scripts/generator/color-set.ts +++ b/scripts/generator/color-set.ts @@ -383,20 +383,18 @@ export const getColorSet = (theme: ThemeSetting): IColorSet => { wordHighlight: `${theme.scheme.base.pink}30`, // When the cursor is on a symbol, highlights places that symbol is written wordHighlightStrong: `${theme.scheme.base.green}30` - } + }, /** * Override all syntax tokens */ - // customTokens: [ - // { - // name: 'String', - // scope: [ 'string' ], - // settings: { - // fontStyle: 'normal', - // foreground: '#', - // background: '#' - // } - // } - // ] + customTokens: [ + { + name: 'Punctuation', + scope: ['punctuation'], + settings: { + foreground: theme.scheme.base.cyan + } + } + ] }; };