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
Try this setting in your settings.json:
"editor.tokenColorCustomizations": {
"variables": "#f00"
},
There are a few such simple token color customizations available: variables, comments, keywords, functions, numbers, strings and types. Those only allow setting the color though.
If you use "textMateRules" you can set more properties. For example:
"editor.tokenColorCustomizations": {
"textMateRules": [
{
"scope": "comment",
"settings": {
"fontStyle": "italic",
"foreground": "#C69650"
}
}
]
},