我该如何在VS Code状态栏中改变><远程图标的颜色?

23
我安装了 VS Code 的 远程开发扩展,但状态栏左侧的绿色 >< 图标与我的首选主题不搭配。我该如何更改它的颜色?

状态栏中的绿色 >< 图标

1个回答

28

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

您还可以在 VS Code 中使用 workbench.colorCustomizations 设置 覆盖颜色。

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

紫色遥控器指示灯


网页内容由stack overflow 提供, 点击上面的
可以查看英文原文,
原文链接