Theme Converter is a CLI tool which allows you to convert your VS Code theme to work in Visual Studio. It's a simple tool that maps the colors of a theme to Visual Studio. Themes can be packaged into VSIXs and uploaded to the Marketplace so that more people can use your theme! This allows developers who use Visual Studio, or use both VS Code and Visual Studio, to quickly get access to a wide range of fun and interesting themes!
Here's a quick overview on how the Theme Converter works:
Our community of authors have already converted a handful of VS Code themes to work in Visual Studio. Feel free to take a look here.
- VS Code
- VS 2022 Preview 3 or later for best results
- The following individual components can be installed via the Visual Studio installer: .NET 5.0 Runtime, .NET Desktop development workload, and Visual Studio extension development workload.
- Open command line in Admin mode.
- Clone the repo
- Go to
<your_clone_path>\ThemeConverter\ThemeConverter
and build the converter project withdotnet build ThemeConverter.csproj
. - Go to
<your_clone_path>\ThemeConverter\ThemeConverter\bin\Debug\net5.0
. - Get the theme file with steps described in section Getting a theme's json file
- Run
ThemeConverter.exe -h
to see the usage of the tool and use the tool according to your needs.-
If you want to convert a theme and patch it to a target VS:
- Run
ThemeConverter.exe -i <path_to_theme_json> -t <target_vs_installation_path>
- Example:
ThemeConverter.exe -i "C:\myTheme\TestTheme.json" -t "C:\Program Files\Microsoft Visual Studio\2022\Preview"
. This command will convert the TestTheme, patch the generated json to the target VS and launch the VS with the converted theme. - Note: the VS installation path can be found in your VS installer (the location field on the modify page).
- Now you can see the your converted theme under
Tools -> Themes
! Enjoy!
- Run
-
If you just want to convert a theme and get the generated pkgdef:
- Run
ThemeConverter.exe -i <path_to_theme_json> -o <output_path>
- Example:
ThemeConverter.exe -i "C:\myTheme\TestTheme.json" -o "C:\myTheme\results"
. This command will convert the theme and the generated pkgdef will beC:\myTheme\results\TestTheme.pkgdef
.
- Run
-
- Open VS Code.
- Install the desired color theme and switch to this theme in VS Code. Please note that this tool will not convert icon themes.
- “Ctrl + Shift + P” and run “Developer: Generate Color Theme from current settings.”
- In the generated JSON, uncomment all code. When you uncomment, please be careful about missing commas! Make sure the JSON is valid.
- Save this as a “JSON” file for the conversion, using the theme's name as the file name. Please ensure that the file’s extension is .json. (The file shouldn’t be saved as a JSONC file.)
- Note: Because some part of VS UI does not support customized alpha channel, we recommend reducing the usage of not fully opaque colors for better conversion result.
This section describes how you can create a VSIX with the converted theme for publishing and sharing.
- In VS 2022, create a new "Empty VSIX Project."
- Select the project node and open the "Add existing Item" window: Use "Shift + Alt + A" or right-click on the project node, select Add > Existing Item.
- Set filter to All Files (.) and select the converted .pkgdef file(s) that you want to include in this VSIX.
- Select the newly added pkgdef file in the Solution Explorer and open the Properties window. If the Properties window is not already open, navigate to the View menu at the top > Properties Window.
- Set
Copy to Output Directory
toCopy always
. - Set
Include in VSIX
totrue
. - Open the
source.extension.vsixmanifest
file, then select Assets, select New. - Set
Type
toMicrosoft.VisualStudio.VsPackage
, andSource
toFile on filesystem
. - Select Browse and select the .pkgdef you added. Select OK.
- Edit other fields in the vsixmanifest as desired (author, version, company, etc).
- Build solution and you now have a vsix in the output folder! Your new theme is most compatible with Visual Studio 2022 Preview 3 and up.
- Open target VS and switch to some theme that will not be deleted (like Blue theme).
- Go to
<vs_install_dir>\Common7\IDE\CommonExtensions\Platform
. e.g:C:\Program Files\Microsoft Visual Studio\2022\Preview\Common7\IDE\CommonExtensions\Platform
and delete the pkgdef of the theme that the you want to remove (The name of the pkgdef will match the name of the theme). - Open Developer Command Prompt of the target VS and run
devenv /updateConfiguration
. - Launch VS again, and the themes should now be removed.
This project uses GitHub Issues to track bugs and feature requests. Please search the existing issues before filing new issues to avoid duplicates. For new issues, file your bug or feature request as a new Issue.
Support for this project is limited to the resources listed above.
This project welcomes contributions and suggestions. Most contributions require you to agree to a Contributor License Agreement (CLA) declaring that you have the right to, and actually do, grant us the rights to use your contribution. For details, visit https://cla.opensource.microsoft.com.
When you submit a pull request, a CLA bot will automatically determine whether you need to provide a CLA and decorate the PR appropriately (e.g., status check, comment). Simply follow the instructions provided by the bot. You will only need to do this once across all repos using our CLA.
This project has adopted the Microsoft Open Source Code of Conduct. For more information see the Code of Conduct FAQ or contact opencode@microsoft.com with any additional questions or comments.
This project may contain trademarks or logos for projects, products, or services. Authorized use of Microsoft trademarks or logos is subject to and must follow Microsoft's Trademark & Brand Guidelines. Use of Microsoft trademarks or logos in modified versions of this project must not cause confusion or imply Microsoft sponsorship. Any use of third-party trademarks or logos are subject to those third-party's policies.