Home > front end >  How to change background color of the editor groups in Visual Studio Code?
How to change background color of the editor groups in Visual Studio Code?

Time:11-13

I am trying to make some changes to the default Dark Visual Studio Code Theme. I like the Visual Studio Code dark default theme and its color, but I just need it to be more dark or black... now I almost succeed... but I cannot seem to find the property to change the editor group background color.

What is the name of the property to change the background color of the marked area in red of the picture

Image showing the marked area in Visual Studio Code that needs it's color changed

CodePudding user response:

It is called editorGroupHeader.tabsBackground:

{
  "workbench.colorCustomizations": {
    "[Default Dark ]": {
      "editorGroupHeader.tabsBackground": "#ff0000"
    }
  }
}

image showing the editorGroupHeader.tabsBackground turned to red

  • Related