Reputation: 175
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?
"workbench.colorCustomizations": {
"editor.background": "#001733",
"sideBar.background":"#001C40",
"sideBarTitle.foreground": "#ffffff"
}
Upvotes: 4
Views: 1480
Reputation: 4983
"sideBarSectionHeader.background" and "sideBarSectionHeader.foreground"
Upvotes: 0
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