我最近在VisualStudio代码中更改了我的颜色主题,我喜欢这个主题中的所有东西,除了〈〉标签的浅紫色,它们与粉红色冲突。我怎样才能更改它们,使它们成为不同的颜色,更喜欢深紫色。顺便说一句,我使用的主题叫做东京夜 Storm 。<> tags我已经尝试进入我的settings.json,但到底要写什么。
eivgtgni1#
你试过这个吗:选项-〉字体和颜色-〉{要自定义的字段}-〉自定义
bvjveswy2#
使用Developer: Inspect Editor Tokens and Scopes操作打开范围检查器。然后点击你想要检查的令牌。然后找出它的textmate范围。在本例中,左尖括号是:
Developer: Inspect Editor Tokens and Scopes
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" } }], } },
另请参阅创建自己的颜色主题的文档。
2条答案
按热度按时间eivgtgni1#
你试过这个吗:选项-〉字体和颜色-〉{要自定义的字段}-〉自定义
bvjveswy2#
使用
Developer: Inspect Editor Tokens and Scopes
操作打开范围检查器。然后点击你想要检查的令牌。然后找出它的textmate范围。在本例中,左尖括号是:选择一个合适的textmate scope,然后在token colour定制中使用它,如下所示:
另请参阅创建自己的颜色主题的文档。