VS 代码禁用 JSDoc 注释着色

VS Code Disable JSDoc Comment Coloring

我想在 Visual Studio 代码中禁用彩色 JSDoc 注释。

目前,JSDoc 注释看起来像这样(@param,等等颜色不同于默认注释颜色):

我希望整个评论都是相同的默认灰色。我尝试禁用所有扩展和自定义用户设置,但这并没有影响 JSDoc 突出显示。有谁知道我需要更改哪些设置才能解决此问题?我以为 workbench.colorCustomizationseditor.tokenColorCustomizations 会有我想更改的设置,但我找不到它。

感谢 One Dark Pro 上的用户 Binaryify GitHub 向我展示了更改 VS Code 中 JSDoc 突出显示的设置! Link to the GitHub issue

"editor.tokenColorCustomizations": {
    "textMateRules": [
      {
        "name": "storage.type.class.jsdoc",
        "scope":
          "storage.type.class.jsdoc,entity.name.type.instance.jsdoc,variable.other.jsdoc",
        "settings": {
          "foreground": "#7f848eff"
        }
      }
    ]
  },

将 "foreground" 颜色替换为您用于评论的颜色。此处使用的颜色是 One Dark Pro 主题中使用的默认灰色。