如何更改VS Code状态栏中的> <远程图标的颜色?

时间:2019-05-02 18:23:28

标签: visual-studio-code vscode-remote

我安装了VS Code Remote Development extensions,但是状态栏左侧的绿色><图标与我喜欢的主题不太匹配。如何更改其颜色?

The green >< icon in the status bar

1 个答案:

答案 0 :(得分:0)

><图标是“远程窗口指示器”。 Color themes可以使用statusBarItem.remoteBackgroundstatusBarItem.remoteForeground主题色来自定义其颜色

您还可以使用VS Code中的workbench.colorCustomizations setting覆盖颜色:

"workbench.colorCustomizations": {
    "statusBarItem.remoteBackground": "#5a34a0",
    "statusBarItem.remoteForeground": "#ccc"
}

Purple remote indicator

相关问题