如何在vs代码中更改字体颜色的特定高亮显示

时间:2019-02-19 08:34:20

标签: colors visual-studio-code vscode-settings

假设我有一个style.sass文件(例如)。我想更改表示类名的字体颜色。怎么做?

1 个答案:

答案 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"
                    }
                }
            ]
        }
    },