parent
94a98fec82
commit
420341c383
1 changed files with 27 additions and 0 deletions
|
@ -48,6 +48,33 @@ export const getColorSet = (theme: ThemeSetting): IColorSet => {
|
||||||
* Override all syntax tokens
|
* Override all syntax tokens
|
||||||
*/
|
*/
|
||||||
customTokens: [
|
customTokens: [
|
||||||
|
{
|
||||||
|
name: 'Markup Deleted',
|
||||||
|
scope: [
|
||||||
|
'markup.deleted'
|
||||||
|
],
|
||||||
|
settings: {
|
||||||
|
foreground: theme.scheme.base.red
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: 'Markup Inserted',
|
||||||
|
scope: [
|
||||||
|
'markup.inserted'
|
||||||
|
],
|
||||||
|
settings: {
|
||||||
|
foreground: theme.scheme.base.green
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: 'Markup Underline',
|
||||||
|
scope: [
|
||||||
|
'markup.underline'
|
||||||
|
],
|
||||||
|
settings: {
|
||||||
|
fontStyle: 'underline'
|
||||||
|
}
|
||||||
|
},
|
||||||
{
|
{
|
||||||
name: 'Keyword Control',
|
name: 'Keyword Control',
|
||||||
scope: [
|
scope: [
|
||||||
|
|
Loading…
Reference in a new issue