Reputation: 2299
Is it possible to open 2 Visual Studio Code sessions with different themes? Maybe like this:
As requests for off-site resources are off-topic, I am only looking for answers involving Visual Studio Code's built-in capabilities.
Upvotes: 229
Views: 89701
Reputation: 329
or
{
"workbench.colorTheme": "GitHub Dark"
}
Upvotes: 8
Reputation: 146
@Alex Myers just highlighting make sure to choose Workspace
Your answer took me straight to the right place. I made the same mistake others are complaining about, i.e. theme changes across all windows. We just missed a small but important step.
Upvotes: 10
Reputation: 706
Maybe : Peacock
Subtly change the color of your Visual Studio Code workspace. Ideal when you have multiple VS Code instances, use VS Live Share, or use VS Code's Remote features, and you want to quickly identify your editor.
And this theme combine perfect ! my 10 cents
Upvotes: 31
Reputation: 86
In root folder, you can create a folder .vscode, then create a settings.json file.
Insert the follow setting in your settings.json file.
{
"workbench.colorTheme": "Default Dark+"
}
Then you can set different theme according your project.
Upvotes: 3
Reputation: 7135
You can have a different theme per workspace/folder by adjusting the workbench.colorTheme
in the workspace settings.
Now, whenever you reopen that folder, the color theme will match what you set in the workspace settings.
Upvotes: 460