如何更改 vscode 中的滚动条分隔符颜色?
How can I change the scrollbar separator color in vscode?
需要更改此颜色,它不是为滚动条主题提供的选项之一。它藏在别的地方了吗?
Scroll Bar Control
scrollbar.shadow: Scroll Bar shadow to indicate that the view is scrolled.
scrollbarSlider.activeBackground: Slider background color when active.
scrollbarSlider.background: Slider background color.
scrollbarSlider.hoverBackground: Slider background color when hovering.
settings.json
:
"editor.overviewRulerBorder": false
要更改分隔符的颜色,您可以将其添加到 settings.json
:
"workbench.colorCustomizations": {
"editorOverviewRuler.border": "#191C22"
}
需要更改此颜色,它不是为滚动条主题提供的选项之一。它藏在别的地方了吗?
Scroll Bar Control
scrollbar.shadow: Scroll Bar shadow to indicate that the view is scrolled.
scrollbarSlider.activeBackground: Slider background color when active.
scrollbarSlider.background: Slider background color.
scrollbarSlider.hoverBackground: Slider background color when hovering.
settings.json
:
"editor.overviewRulerBorder": false
要更改分隔符的颜色,您可以将其添加到 settings.json
:
"workbench.colorCustomizations": {
"editorOverviewRuler.border": "#191C22"
}