Is it possible to open 2 Visual Studio Code sessions with different themes? Maybe like this:
- Window 1: light theme → live system
- Window 2: dark theme → development system
Is it possible to open 2 Visual Studio Code sessions with different themes? Maybe like this:
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.
Check out the Window Colors extension which:
Automatically adds a unique color to each window's activityBar and titleBar.
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
or
make a folder in your project with .vscode
make a file with the name of settings.json inside the folder.
simply copy paste or write the following code. with the theme name
{ "workbench.colorTheme": "GitHub Dark" }
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.