Reputation: 23
I installed an extension and it changed my VS Code Title Bar Color and now I don't know how to fix it.
I want to change this:
I read other similar questions but it doesn't change at all.
Upvotes: 2
Views: 572
Reputation: 29600
If you installed the Window Colors extension, uninstalling it indeed does not revert the title bar colors.
You will have to go through all the workspaces you opened while the extension was installed, and:
"workbench.colorCustomizations"
block"workbench.colorCustomizations": {
"activityBar.background": ...
"titleBar.activeBackground": ...,
"titleBar.activeForeground": ...
}
If you have your own color customizations, then that block will contain other settings copied over from your User settings. Check that the extension indeed duplicates the color customizations from your User settings, then you can simply delete the entire "workbench.colorCustomizations"
from the Workspace settings.
Upvotes: 3