如何更改 VS Code 状态栏中 >< 远程图标的颜色?
How can I change the color of the >< remote icon in the VS Code status bar?
我安装了 VS Code Remote Development extensions,但状态栏左侧的绿色 ><
图标看起来不适合我的首选主题。我如何改变它的颜色?
><
图标是远程 Window 指示灯。 Color themes 可以使用 statusBarItem.remoteBackground
和 statusBarItem.remoteForeground
主题颜色自定义其颜色
您还可以使用 VS Code 中的 workbench.colorCustomizations
setting 覆盖颜色:
"workbench.colorCustomizations": {
"statusBarItem.remoteBackground": "#5a34a0",
"statusBarItem.remoteForeground": "#ccc"
}
我安装了 VS Code Remote Development extensions,但状态栏左侧的绿色 ><
图标看起来不适合我的首选主题。我如何改变它的颜色?
><
图标是远程 Window 指示灯。 Color themes 可以使用 statusBarItem.remoteBackground
和 statusBarItem.remoteForeground
主题颜色自定义其颜色
您还可以使用 VS Code 中的 workbench.colorCustomizations
setting 覆盖颜色:
"workbench.colorCustomizations": {
"statusBarItem.remoteBackground": "#5a34a0",
"statusBarItem.remoteForeground": "#ccc"
}