假设我有一个style.sass
文件(例如)。我想更改表示类名的字体颜色。怎么做?
答案 0 :(得分:0)
打开命令选项板,键入scope
,然后选择Developer: Inspect TM Scopes
命令。现在,您可以单击您感兴趣的一段文本(在我们的案例中为.someclassname
),该文本段具有entity.other.attribute-name.class { "foreground": "#6495ed" }
的范围和设置。现在打开您的settings.json
(通常在~/.config/Code/User/settings.json
)并编辑editor.tokenColorCustomizations
属性(如果没有这样的属性,请添加它)。
输入主题而不是“ [Material Theme Lighter]”。
"editor.tokenColorCustomizations": {
"[Material Theme Lighter]": {
"textMateRules": [
{
"scope": "entity.other.attribute-name.class ",
"settings": {
"foreground": "#6495ed"
}
}
]
}
},