scheme: Fix punctuation
This commit is contained in:
parent
f00f390902
commit
6c31bfd4dd
1 changed files with 10 additions and 12 deletions
|
@ -383,20 +383,18 @@ export const getColorSet = (theme: ThemeSetting): IColorSet => {
|
||||||
wordHighlight: `${theme.scheme.base.pink}30`,
|
wordHighlight: `${theme.scheme.base.pink}30`,
|
||||||
// When the cursor is on a symbol, highlights places that symbol is written
|
// When the cursor is on a symbol, highlights places that symbol is written
|
||||||
wordHighlightStrong: `${theme.scheme.base.green}30`
|
wordHighlightStrong: `${theme.scheme.base.green}30`
|
||||||
}
|
},
|
||||||
/**
|
/**
|
||||||
* Override all syntax tokens
|
* Override all syntax tokens
|
||||||
*/
|
*/
|
||||||
// customTokens: [
|
customTokens: [
|
||||||
// {
|
{
|
||||||
// name: 'String',
|
name: 'Punctuation',
|
||||||
// scope: [ 'string' ],
|
scope: ['punctuation'],
|
||||||
// settings: {
|
settings: {
|
||||||
// fontStyle: 'normal',
|
foreground: theme.scheme.base.cyan
|
||||||
// foreground: '#',
|
}
|
||||||
// background: '#'
|
}
|
||||||
// }
|
]
|
||||||
// }
|
|
||||||
// ]
|
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue