Perhaps you want to try Visual Studio Color Theme Designer 2022

Or install VS2019 dark theme

And additionally report it to http://developercommunity.visualstudio.com as a problem, to make the default theme good.

Answer from Alex Guteniev on Stack Overflow
🌐
Microsoft Learn
learn.microsoft.com › en-us › visualstudio › ide › how-to-change-fonts-and-colors-in-visual-studio
Change fonts, colors, and themes in Visual Studio
January 13, 2026 - If you download themes from the Visual Studio Marketplace, restart your Visual Studio instance to view them. Then, go to Tools > Theme and confirm the list includes your newly installed themes. Select the desired theme to apply it.
🌐
Visual Studio Code
code.visualstudio.com › docs › configure › themes
Themes
November 3, 2021 - For example, you can modify the icons for the views in the Activity Bar, or the icons in the title bar for changing the layout. Notice in the following image how the Activity Bar icons are updated when selecting a different Product Icon Theme.
🌐
Reddit
reddit.com › r/csharp › change visual studio 2019 color theme
r/csharp on Reddit: Change Visual Studio 2019 color theme
March 26, 2021 -

Hi everyone, I hope this is the correct place to ask this question :)

When I open a .cs file inside Visual Studio Code it shows it using the following syntax color:

I like this a lot more than the default syntax color that Visual Studio Community uses. Is there any way I would be able to use the same syntax color inside VS Community? Using themes perhaps.

Thanks for any help :)

🌐
Microsoft Learn
learn.microsoft.com › en-us › visualstudio › ide › visual-studio-color-themes
Visual Studio Color Themes - Visual Studio (Windows) | Microsoft Learn
2 weeks ago - In addition to Light or Dark, you can also try the Extra Contrast options (Light Extra Contrast or Dark Extra Constrast) which can improve text contrast in the editor. ... Select Tools > Options from the menu bar. Expand All Settings > Environment ...
🌐
Microsoft Learn
learn.microsoft.com › en-us › visualstudio › ide › personalizing-the-visual-studio-ide
Customize & save your personal Visual Studio IDE settings - Visual Studio (Windows) | Microsoft Learn
2 weeks ago - You can change the color theme between Dark, Light, and other colors. Visual Studio includes color themes such as Cool Breeze, Spicy Red, Bubblegum, and more. For a visual preview of all available themes, see Visual Studio color themes. If you enter theme in the search box, you can quickly set the theme to your preferred color.
Find elsewhere
🌐
Medium
juliushuck.medium.com › custom-themes-in-visual-studio-842a3c641d6
Custom Themes in Visual Studio. Short instructions on how to change the… | by Julius Huck | Medium
March 4, 2020 - There are 4 themes built-in in Visual Studio (Light, Dark, Blue, Blue (Extra Contrast)). You can change the theme under Tools > Options > Environment-General.
🌐
Visual Studio Code
code.visualstudio.com › docs › introvideos › configure
Personalize Visual Studio Code
November 3, 2021 - Change your File Icon Theme. Extensions in Visual Studio Code - Add features to VS Code through Extensions.
🌐
Microsoft Learn
learn.microsoft.com › sk-sk › shows › vstips › visual-studio-tip-creating-changing-themes-in-visual-studio
Visual Studio Tip: Creating and changing themes in Visual Studio | Microsoft Learn
In this video not only will I show you how to change your theme, but I will also show you how to use the Visual Studio Color Theme Editor to create your own themes. You can also check out some of the color schemes for the code editor window others have created and you can re-use at studio styles.
🌐
Visual Studio Marketplace
marketplace.visualstudio.com › items
Visual Studio Color Theme Designer 2022 - Visual Studio Marketplace
October 20, 2022 - Extension for Visual Studio - Allows users to create and edit Visual Studio themes. Themes can customize colors used for menus, toolbars, tabs, titlebars, the text editor, and other environment colors.
🌐
Microsoft Learn
learn.microsoft.com › en-us › visualstudio › extensibility › migration › modernize-theme-colors
Modernize Visual Studio theme colors - Visual Studio (Windows) | Microsoft Learn
November 20, 2025 - Learn how to migrate Visual Studio themes from the legacy token-based system to the new streamlined color system introduced in Visual Studio 2026.
🌐
GitHub
microsoft.github.io › vscode-essentials › en › 03-customization.html
Customize your editor · Visual Studio Code - The Essentials
However, it is possible to choose a different theme for your projects by creating a specific configuration file for the workspace, as we will see later. If you want to change one or more colors of the current theme, you can do so by changing the settings.json file of your user preferences.
🌐
VS Code Themes
vscodethemes.com
VS Code Themes
Search themes for Visual Studio Code
🌐
Educative
educative.io › answers › how-to-change-visual-studio-code-theme
How to change Visual Studio Code theme
The default color theme in VS Code is dark, but it can be customized according to individual preferences. To do so, navigate to Settings, select Themes, and choose a desired color theme from the available options.
Top answer
1 of 6
54

The actual extension is now live for VS 2017. – vaindil

The official Visual Studio 2017 Color Theme Editor has arrived! I recommend using it instead of the hack below. Since the hacked version has some downsides that the official plugin does not have: it requires restarting visual studio when importing themes, plugin updates cause loosing themes, it doesn't define all colors that VS2017 uses.

Still, people might find use in hacking VSIX-files to get old Visual Studio plugins working. Therefore I leave the original answer below for reference.

Original answer: hacking plugin VSIX-file

With some hacking you CAN install the VS2015 Color Theme Editor or the VS2013 Color Theme Editor. I tried it and it more or less appears to work*.

  • download the linked VSIX-file and save it somewhere (e.g. in ColorThemeEditor.vsix);
  • VSIX-files are zip archives, open its contents for editing (or extract it and recompress it after editing) (for example with 7-Zip);
  • Edit extension.vsixmanifest;

    • there are two InstallationTargets (Id="Microsoft.VisualStudio.Pro" and Id="Microsoft.VisualStudion.IntegratedShell");
    • change the Version from "[14.0,15.0)" or "[12.0,13.0)" to respectively "[14.0,16.0)" or "[12.0,16.0)"
    • Only for the VS2013 Color Theme Editor, remove the Dependency with DisplayName="Visual Studio Product Updates" or change it to Version="12.0.20827.3,16.0))

      Visual studio 2017 is version 15.0. Square bracket means inclusive, whereas round bracket is exclusive.

  • Save extension.vsixmanifest and ColorThemeEditor.vsix;
  • Open ColorThemeEditor.vsix via the VSIXInstaller

    There might be some warnings about incompatible versions; but if all went well `Visual Studio 2017 is among the versions in which the plugin can be installed.

  • Install the plugin for Visual Studio 2017.

Editing and saving themes is problematic, as pointed out by @RepoMan. The following work around allows you to edit a theme and save it:

  • Edit the theme as you normally would
  • Save the changes, e.g. via the save and apply button
  • Visual Studio throws a null reference exception; ignore it.
  • Visual studio is not yet affected by the changes
  • Restart Visual Studio; the new instance should have your theme changes.

*There is a problem when importing and deleting imported themes: Could not load file or assembly 'Microsoft.VisualStudio.ExtensionManager, Version=12.0.0.0. .... At first the imported theme can not be selected. After visual studio has been restarted you can select the imported theme.

2 of 6
30

If you're referring to one of the 3 inbuilt themes, this link from Microsoft explains how. The relevant bit is below:

  1. On the menu bar, choose Tools, Options.
  2. In the options list, choose Environment, General.
  3. In the Color theme list, choose either the default Blue theme, Dark or Light.


If you're referring to the Color Theme Editor from Microsoft, 2013 is still the latest version (it's referenced in the link above, for 2017RC). Unfortinately it says on the same page, that you can only use it on Visual Studio Professional, Visual Studio Premium and Visual Studio Ultimate. I tried installing it on Visual Studio Community anyway, and it doesn't work.

Microsoft have also changed the format of the .vssettings file, so you can't manually import VS 2013 themes either.

I really hope you can change the theme in Visual Studio 2017 Community when it comes out.

🌐
Microsoft Learn
learn.microsoft.com › en-us › visualstudio › extensibility › ux-guidelines › colors-and-styling-for-visual-studio
Colors and Styling for Visual Studio - Visual Studio (Windows) | Microsoft Learn
July 30, 2025 - Customizable UI components are found in the Fonts and Colors section of the Tools > Options dialog, where users can choose to change the foreground color, background color, or both.
🌐
Microsoft
devblogs.microsoft.com › dev blogs › visual studio blog › introducing collection of new visual studio themes!
Introducing Collection of New Visual Studio Themes! - Visual Studio Blog
August 27, 2023 - We’ve been building capabilities for syncing your VS theme to your Windows theme, new ways to manage your tabs and documents, and color coding your workspace. Now, we’re working with community theme authors to test a new theme conversion tool so that Visual Studio can further fit your habits and preferences.