JM_2021
JM_2021

Reputation: 175

How do I change the sidebar title color in vscode?

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"
    }

Upvotes: 4

Views: 1480

Answers (2)

eddy147
eddy147

Reputation: 4983

"sideBarSectionHeader.background" and "sideBarSectionHeader.foreground"

Upvotes: 0

user9837582
user9837582

Reputation:

I think you’re looking for something like:

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

Upvotes: 3

Related Questions