我安装了 VS Code远程开发扩展,但状态栏左侧的绿色><
图标不适合我喜欢的主题。我如何改变它的颜色?
问问题
1800 次
1 回答
21
该><
图标是远程窗口指示器。颜色主题statusBarItem.remoteBackground
可以使用和statusBarItem.remoteForeground
主题颜色自定义其颜色
您还可以使用VS Code中的设置覆盖颜色:workbench.colorCustomizations
"workbench.colorCustomizations": {
"statusBarItem.remoteBackground": "#5a34a0",
"statusBarItem.remoteForeground": "#ccc"
}
于 2019-05-02T18:23:27.573 回答