我正在使用 Visual Studio Code 的 Atom One Dark 主题扩展,但我想更改变量类型和常量名称的颜色。我在此图中用白色圈出了这些元素。
是否有任何 json 代码可用于更改变量类型和常量名称的颜色?我尝试使用以下代码,但它似乎并没有改变编辑器中的任何内容,更不用说那些元素了:
"editor.tokenColorCustomizations": {
"[Atom One Dark]": {
"variables": "#FF0000",
"textMateRules": [
{
"scope": "variable",
"settings": {
"fontStyle": "italic",
"foreground": "#C69650"
}
}
]
}
}