I would like to make variables displayed with colours.
This is how it looks:
This is how I want it to be:
Looking through here, I canno
You should be able to add the color in tokenColors
to customize the colors (basic example):
SomeTheme.json
{
"name": "Some Theme",
"type": "dark",
"colors": {
...
},
"tokenColors": [
{
"name": "Variables",
"scope": "variable",
"settings": {
"foreground": "#e06c75"
}
},
]
}
I don't have VSCode
, although from looking at another themes JSON it looks similar.