Answer the question
In order to leave comments, you need to log in
How to set property color for objects in VSCode theme?
Styling my theme in VSCode, I need to make all "prop" displayed in green:
var x = obj.prop;
those. how to set a custom color for all object properties?
jap javascript
Answer the question
In order to leave comments, you need to log in
"editor.tokenColorCustomizations": {
"textMateRules": [
{
"scope": "variable.other.property",
"settings": {
"foreground": "#FF0000"
}
}
]
}, ... ... ... ... ... ...
In settings.json you define the field editor.tokenColorCustomizations and in it you can specify a theme in which you will change the color of the object and the type of the object.
For reference https://code.visualstudio.com/docs/getstarted/them...
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question