css 如何更改Visual Studio代码中〈>标记的颜色

hs1ihplo  于 2023-02-01  发布在  其他
关注(0)|答案(2)|浏览(250)

我最近在VisualStudio代码中更改了我的颜色主题,我喜欢这个主题中的所有东西,除了〈〉标签的浅紫色,它们与粉红色冲突。我怎样才能更改它们,使它们成为不同的颜色,更喜欢深紫色。顺便说一句,我使用的主题叫做东京夜 Storm 。<> tags
我已经尝试进入我的settings.json,但到底要写什么。

eivgtgni

eivgtgni1#

你试过这个吗:选项-〉字体和颜色-〉{要自定义的字段}-〉自定义

bvjveswy

bvjveswy2#

使用Developer: Inspect Editor Tokens and Scopes操作打开范围检查器。然后点击你想要检查的令牌。然后找出它的textmate范围。在本例中,左尖括号是:

punctuation.definition.tag.begin.html
meta.tag.structure.html.start.html
text.html.derivative

选择一个合适的textmate scope,然后在token colour定制中使用它,如下所示:

"editor.tokenColorCustomizations": {
    "[Tokyo Night Storm]": {
        "textMateRules": [{
            "scope":"punctuation.definition.tag.begin.html",
            "settings": {
                "foreground": "#FF0000",
                "fontStyle": "bold"
            }
        },{
            "scope":"punctuation.definition.tag.end.html",
            "settings": {
                "foreground": "#FF0000",
                "fontStyle": "bold"
            }
        }],
    }
},

另请参阅创建自己的颜色主题的文档。

相关问题