Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Change Visual Studio Code's title bar color

Is there a way to change the Title Bar color for Visual Studio Code (v1.26.0)?

like image 475
Coder Absolute Avatar asked Aug 14 '18 02:08

Coder Absolute


2 Answers

  1. Menu FilePreferencesSettings

  2. Look for "window.titleBarStyle": "native", copy it to your user settings, and change it to "window.titleBarStyle": "custom". It will adapt your theme now.

  3. If the current color is not what you want or you want to tweak it, try doing this.

  4. In your user settings, add the following.

    "workbench.colorCustomizations": {     "[Name of the Current Theme you are using]": {         "titleBar.activeBackground": "#191919cc",         "titleBar.activeForeground":"#ffffff",     }, }, "window.titleBarStyle": "custom" 
like image 56
pwxcoo Avatar answered Oct 28 '22 18:10

pwxcoo


cmd palette

Open menu FilePreferencesSettings and add the following setting:

"workbench.colorCustomizations": {   "titleBar.activeBackground": "#553955" // Change this color! }, "window.titleBarStyle": "custom" 

Result

From the following source:

Colorful Visual Studio Code titlebars for better productivity

like image 39
Audwin Oyong Avatar answered Oct 28 '22 18:10

Audwin Oyong