Home > database >  How do I change the sidebar title color in vscode?
How do I change the sidebar title color in vscode?

Time:12-04

I have already managed to change the theme of my vscode, but I am not able to change the color of the area marked below. How do I change?

enter image description here

 "workbench.colorCustomizations": {
            "editor.background": "#001733",
            "sideBar.background":"#001C40",      
            "sideBarTitle.foreground": "#ffffff"
    }

CodePudding user response:

I think you’re looking for something like:

 "workbench.colorCustomizations": {
            "editor.background": "#001733",
            "sideBar.background":"#001C40",      
            "sideBarTitle.foreground": "#ffffff",
            "sideBarSectionHeader.foreground": "#ffffff"
    }

CodePudding user response:

The tagged area displays the currently opened folder. Obviously you have opened a folder called sistema. The title changes whenever you open a new folder:

enter image description here

  • Related