VSCode 黑色菜单栏
VSCode Black Menu Bar
所以在上次更新的发行说明 (1.27.2) 中我看到了这个截图:
但我的菜单栏看起来和往常一样难看。如何启用黑色菜单栏(我假设它是作为 HTML 页面的一部分而不是本机 Windows 菜单栏实现的)?
不是很明显,在设置中:
// Adjust the appearance of the window title bar. Changes require a
full restart to apply.
"window.titleBarStyle": "custom",
然后您需要选择一个实际提供该颜色的深色主题:
// Specifies the color theme used in the workbench.
"workbench.colorTheme": "Default Dark+",
或者您可以在 colorCustomizations
中更改标题栏的颜色:
"workbench.colorCustomizations": {
"titleBar.activeBackground": "#555",
"titleBar.activeForeground": "#fff"
}
因此,要么选择一个设置标题栏颜色的主题,要么使用最后两个 colorCustomization 设置自行更改。但无论哪种情况,都必须设置:
"window.titleBarStyle": "custom",
所以在上次更新的发行说明 (1.27.2) 中我看到了这个截图:
但我的菜单栏看起来和往常一样难看。如何启用黑色菜单栏(我假设它是作为 HTML 页面的一部分而不是本机 Windows 菜单栏实现的)?
不是很明显,在设置中:
// Adjust the appearance of the window title bar. Changes require a full restart to apply.
"window.titleBarStyle": "custom",
然后您需要选择一个实际提供该颜色的深色主题:
// Specifies the color theme used in the workbench.
"workbench.colorTheme": "Default Dark+",
或者您可以在 colorCustomizations
中更改标题栏的颜色:
"workbench.colorCustomizations": {
"titleBar.activeBackground": "#555",
"titleBar.activeForeground": "#fff"
}
因此,要么选择一个设置标题栏颜色的主题,要么使用最后两个 colorCustomization 设置自行更改。但无论哪种情况,都必须设置:
"window.titleBarStyle": "custom",