【发布时间】:2019-09-21 07:31:20
【问题描述】:
我安装了 VS Code Remote Development extensions,但状态栏左侧的绿色 >< 图标与我喜欢的主题不匹配。如何改变它的颜色?
【问题讨论】:
标签: visual-studio-code vscode-remote
我安装了 VS Code Remote Development extensions,但状态栏左侧的绿色 >< 图标与我喜欢的主题不匹配。如何改变它的颜色?
【问题讨论】:
标签: visual-studio-code vscode-remote
>< 图标是远程窗口指示器。 Color themes 可以使用statusBarItem.remoteBackground 和statusBarItem.remoteForeground 主题颜色自定义其颜色
您还可以在 VS Code 中使用 workbench.colorCustomizations setting 覆盖颜色:
"workbench.colorCustomizations": {
"statusBarItem.remoteBackground": "#5a34a0",
"statusBarItem.remoteForeground": "#ccc"
}
【讨论】: