如何在 .JSON 设置中更改特定 visual studio 符号的颜色?

How to change color of a specific visual studio symbol in .JSON settings?

所以我为我的 visual Studio 创建了一个漂亮的绿色主题,但是有一个特定的符号在之前的主题中仍然是黄色的 Here is a Screenshot of the strange yellow counter I want to change 我只是找不到 json更改其颜色的代码,因为我不知道符号的名称。该符号是“问题”旁边的计数器,请参阅随附的屏幕截图。因此,如果有人知道符号的名称或提供更多信息的网站,将不胜感激。谢谢^^

您可以使用这些颜色主题参考(此处为settings.json):

{
  "workbench.colorCustomizations": {

    "badge.background": "#a1a0a0",  // the badge colors for the problems
    "badge.foreground": "#fff",

    "activityBarBadge.foreground": "#fff",  // badge colors on the activity bar
    "activityBarBadge.background": "#a0a1a1"
  }
}

因为我知道这些是某种“徽章”,所以我在 workbench.colorCustomizations 对象中使用了智能感知,方法是键入“徽章”并查看智能感知中的可能性 pop-up.

完整列表为 theme color reference