如何在VSCode

时间:2019-08-09 18:14:46

标签: visual-studio-code themes

我正在使用Windows 10 64位。

我目前正在覆盖我喜欢的主题的一些设置,但是注意到我选择的逗号颜色也不会改变主题的#:

{     “ workbench.colorTheme”:“材质主题较暗的高对比度”

,“ editor.tokenColorCustomizations”:{     “ [材质主题较暗的高对比度]”:{         “评论”:“#229977”         “ types”:“#f64343”     } }

}

如何将#更改为与设置注释本身相同的颜色?

1 个答案:

答案 0 :(得分:0)

如果我理解您的问题,则“注释定义”字符位于主题“灰色”中,并且通过设置,注释文本现在为绿色。

要同时为“注释定义”字符上色,请将其添加到您的设置中

    "workbench.colorTheme": "Material Theme Darker High Contrast",
    "editor.tokenColorCustomizations": {
      "[Material Theme Darker High Contrast]": {
        "comments": "#229977",
        "textMateRules": [
          { "scope":"punctuation.definition.comment",
            "settings": {"foreground": "#229977"}
          }
        ]
      }
    },

这对JSON文件和Python有效。

您需要定制哪种文件类型?规则名称各不相同。