角度-如何在VS Code中更改html文件中变量的颜色?

时间:2020-04-13 09:58:04

标签: angular visual-studio-code

曾经有人问过问题,但没有答案。

我在html和ts组件文件中有以下片段:

enter image description here

enter image description here

我希望将变量allowNewServerserverCreationStatus涂成紫色。
我的VS Code插件: Angular Essentials(版本9)

1 个答案:

答案 0 :(得分:2)

我使用此VS Code plugin向语法html模板添加语法突出显示。

要进一步增强颜色使其特别是紫色,您必须调整主题或编辑器textMateRules的设置。

在您的settings.json中:

"editor.tokenColorCustomizations": {
      "textMateRules": [
        {
          "scope": [
            "expression.angular-interpolation",
            "source.directive.angular"
          ],
          "settings": {
            "foreground": "purple" // or use your desired hex code
          }
        },
      ]
  },