如何编辑Visual Studio Code主题中的列表悬停背景颜色

huangapple go评论52阅读模式
英文:

How to edit List Hover Background color in Vscode theme

问题

我想知道如何更改我在下面的图像中用黄色箭头指向的背景颜色的设置。

它是在一个我几乎感觉不到的灰色中。

英文:

Using VSCODE, I would like to know what is the setting to change the background color that I point to with a yellow arrow in the following image.

如何编辑Visual Studio Code主题中的列表悬停背景颜色

It is in a gray that I hardly perceive.

答案1

得分: 2

这被称为 list.hoverBackground

您可以通过将以下设置添加到您的 settings.json 文件来进行更新:

"workbench.colorCustomizations": {
    "list.hoverBackground": "#000", // 在这里添加您选择的颜色
}
英文:

This is called list.hoverBackground

You can update it by adding the following settings to your settings.json:

"workbench.colorCustomizations": {
    "list.hoverBackground": "#000", // add your color of choice here 
} 

huangapple
  • 本文由 发表于 2023年5月24日 19:58:08
  • 转载请务必保留本文链接:https://go.coder-hub.com/76323267.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定