英文:
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.
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
}
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论