本文介绍了更改快速选择器的悬停颜色的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
是否可以通过设置更改快速选择器所选选项的颜色?
Is it possible to change the color for quick picker selected option via settings?
推荐答案
要保留当前主题并仅更改此颜色,请在设置中找到Workbench: Color Customizations"并单击edit in settings.json",然后添加以下是屏幕右侧的用户设置:
To keep your current theme and change just this color, find "Workbench: Color Customizations" in your settings and click "edit in settings.json", and add the following to the user settings on the right side of the screen:
"workbench.colorCustomizations": {
"list.focusBackground": "#CCCCCC"
},
您可以用任何您喜欢的颜色替换它.
You can replace it with any color you'd like.
这篇关于更改快速选择器的悬停颜色的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!