VS Code Server/Client BG color settings
May 14, 2020
VS Code client
- Make VS Code client yellow
{
"workbench.colorCustomizations": {
"titleBar.activeForeground": "#000",
"titleBar.inactiveForeground": "#000000CC",
"titleBar.activeBackground": "#FFC600",
"titleBar.inactiveBackground": "#FFC600CC"
}
}
backend - .vscode/settings.json
-
Make VS Code server pink
{ "workbench.colorCustomizations": { "titleBar.activeBackground": "#FF2C70", "titleBar.inactiveBackground": "#FF2C70CC" } }