Visual Studio Themes
2021年9月10日Download here: http://gg.gg/vy0la
Color themes let you modify the colors in Visual Studio Code’s user interface to suit your preferences and work environment.
*Visual Studio Themes 2020
*Visual Studio Themes Monokai
*Visual Studio Themes 2019
*Visual Studio Themes Mac
*Visual Studio Themes GallerySelecting the Color Theme
*In VS Code, open the Color Theme picker with File > Preferences > Color Theme. (Code > Preferences > Color Theme on macOS).
*You can also use the keyboard shortcut ⌘K ⌘T (Windows, Linux Ctrl+K Ctrl+T) to display the picker.
*Use the cursor keys to preview the colors of the theme.
*Select the theme you want and press Enter.
*Color Themes for Visual Studio This extension installs additional color themes for Visual Studio. Similar to the Color Theme Editor, but without the editor - just the themes. Includes all the themes available in the Color Theme Editor, plus additional themes contributed by the community.
*Rainglow is a collection of color themes for a number of different editors and platforms. This repository consists of 320+ syntax and UI themes for Visual Studio. To show support for the project, you can do any (or many!) of the following: Wear a theme. Star the repository. Follow me on twitter, and say hi! Share on refind.
The theme now has over 870k+ installs with 5 for its ratings. You will also have options to use Italic for your fonts, this is one of the most popular themes in Visual Studio Code as of today. Preview VSCode themes from the Visual Studio Marketplace. Browse by trending, dark, or light themes.
The active color theme is stored in your user settings (keyboard shortcut ⌘, (Windows, Linux Ctrl+,)).
Tip: By default, the theme is stored in your user settings and applies globally to all workspaces. You can also configure a workspace specific theme. To do so, set a theme in the Workspace settings.Color Themes from the Marketplace
There are several out-of-the-box color themes in VS Code for you to try.
Many more themes have been uploaded to the VS Code Extension Marketplace by the community. If you find one you want to use, install it and restart VS Code and the new theme will be available.
You can search for themes in the Extensions view (⇧⌘X (Windows, Linux Ctrl+Shift+X)) search box using the @category:’themes’ filter.Customizing a Color ThemeWorkbench colors
You can customize your active color theme with the workbench.colorCustomizations and editor.tokenColorCustomizations user settings.
To set the colors of VS Code UI elements such as list & trees (File Explorer, suggestions widget), diff editor, Activity Bar, notifications, scroll bar, split view, buttons, and more, use workbench.colorCustomizations.
You can use IntelliSense while setting workbench.colorCustomizations values or, for a list of all customizable colors, see the Theme Color Reference.
To customize a specific theme only, use the following syntax:Editor syntax highlighting
To tune the editor’s syntax highlighting colors, use editor.tokenColorCustomizations in your user settingssettings.json file:
A pre-configured set of syntax tokens (’comments’, ’strings’, ...) is available for the most common constructs. If you want more, you can do so by directly specifying TextMate theme color rules:
Note: Directly configuring TextMate rules is an advanced skill as you need to understand on how TextMate grammars work. Go to the Color Theme guide for more information.
Again, to customize a specific theme only, use the following syntax:Editor semantic highlighting
Some languages (currently: TypeScript, JavaScript, Java) provide semantic tokens. Semantic tokens are based on the language service’s symbol understanding and are more accurate than the syntax tokens coming from the TextMate grammars that are driven by regular expressions. The semantic highlighting that is computed from the semantic tokens goes on top of syntax highlighting and can correct and enrich the highlighting as seen in the following example:
The ’Tomorrow Night Blue’ color theme without semantic highlighting:
The ’Tomorrow Night Blue’ color theme with semantic highlighting:
Notice the color differences based on language service symbol understanding:
*line 10: languageModes is colored as a parameter.
*line 11: Range and Position are colored as classes and document as a parameter.
*line 13: getFoldingRanges is colored as a function.
The settings editor.semanticHighlighting.enabled serves as the main control on whether semantic highlighting is applied. It can have values true, false, and configuredByTheme.
*true and false turn semantic highlighting on or off for all themes.
*configuredByTheme is the default and lets each theme control whether semantic highlighting is enabled or not. All the themes that ship with VS Code (for example, the ’Dark+’ default) have semantic highlighting enabled by default.
Users can override the theme setting by:
When semantic highlighting is enabled and available for a language, it is up to the theme to configure whether and how semantic tokens are colored. Some semantic tokens are standardized and map to well-established TextMate scopes. If the theme has a coloring rule for these TextMate scopes, the semantic token will be rendered with that color, without the need for any additional coloring rules.
Additional styling rules can be configured by the user in editor.semanticTokenColorCustomizations’:
To see what semantic tokens are computed and how they are styled, users can use the scope inspector (Developer: Inspect Editor Tokens and Scopes), which displays information for the text at the current cursor position.
If semantic tokens are available for the language at the given position and enabled by theme, the inspect tool shows a section semantic token type. The section shows the semantic token information (type and any number of modifiers) as well as the styling rules that apply.
More information on semantic tokens and styling rule syntax can be found in the Semantic Highlighting Guide.Creating your own Color Theme
Creating and publishing a theme extension is easy. Customize your colors in your user settings then generate a theme definition file with the Developer: Generate Color Theme From Current Settings command.
VS Code’s Yeoman extension generator will help you generate the rest of the extension.
See the Create a new Color Theme topic in our Extension API section to learn more.Remove default Color Themes
If you’d like to remove some of the default themes shipped with VS Code from the Color Theme picker, you can disable them from the Extensions view (⇧⌘X (Windows, Linux Ctrl+Shift+X)). Open the ...More Actions dropdown menu from the top of the Extensions view, select Show Built-in Extensions, and you’ll see a THEMES section listing the default themes.
You can disable a built-in theme extension as you would any other VS Code extension with the Disable command on the gear context menu.File Icon Themes
File icon themes can be contributed by extensions and selected by users as their favorite set of file icons. File icons are shown in the File Explorer and tabbed headings.Selecting the File Icon Theme
*In VS Code, open the File Icon Theme picker with File > Preferences > File Icon Theme. (Code > Preferences > File Icon Theme on macOS).
*You can also use the Preferences: File Icon Theme command from the Command Palette (⇧⌘P (Windows, Linux Ctrl+Shift+P)).
*Use the cursor keys to preview the icons of the theme.
*Select the theme you want and hit Enter.
By default, the Seti file icon set is used and those are the icons you see in the File Explorer. Once a file icon theme is selected, the selected theme will be remembered and appear again whenever VS Code is restarted. You can disable file icons by selecting None.
VS code ships with two file icon themes; Minimal and Seti. To install more file icon themes, select the Install Additional File Icon Themes item in the file icon theme picker and you’ll see a query for file icon themes (tag:icon-theme) in the Extensions view.
You can also browse the VS Code Marketplace site directly to find available themes.
The active File Icon theme is persisted in your user settings (keyboard shortcut ⌘, (Windows, Linux Ctrl+,)).Creating your own File Icon Theme
You can create your own File Icon Theme from icons (preferably SVG), see the File Icon Theme topic in our Extension API section for details.Next steps
Themes are just one way to customize VS Code. If you’d like to learn more about VS Code customization and extensibility, try these topics:
*Settings - Learn how to configure VS Code to your preferences through user and workspace settings.
*Snippets - Add additional snippets to your favorite language.
*Extension API - Learn about other ways to extend VS Code.
*Color Theme - Color Theme extension API.
*File Icon Theme - File Icon Theme extension API. Sponsored By
UPDATE: http://studiostyles.info/ for a great growing community of Visual Studio Styles and Themes. You can create, import and export themes in your browser!Visual Studio Themes 2020
More and more I find myself ’skinning and themeing’ my Visual Studio development environment in order to stay frosty. It’s surprising how changing your theme (fonts, colors, etc.) can re-energize me when I’m having trouble with some problem or motivation.
Here’s a gallery of some nice Visual Studio Themes to refresh your look.
Remember to always back up your settings so you can get back to the way things were and have no fear when you’re changing your settings. Note also that some of these settings files you’ll find out in the wild may (mistakenly) have Keyboard Bindings included. You’ll want to selectively import just the fonts and colors that you want and avoid importing over your own custom keyboard settings.
I switched to a darker scheme a while back, as have many others. I also spent a while looking for the perfect font as have others. When you stumble on a 2005 theme that you want ot use in 2008, Tomas has an XSLT to make the transition smoother.Oren Ellenbogen’s Dark Scheme
A lot of the darker schemes like Oren’s don’t use a True Black, but an ’off black.’ His theme is very low contrast and uses muted, relaxing colors. Mike ’Blowmage’ Moore’s Ruby Blue
This is a low-contrast calm schema, but operators and numbers have a little ’pop’ to them.Vibrant Borland by Mawi
This one bring backs good memories of writing Borland C++ with OWL and Turbovision, with a little Norton Commander thrown in for fun.CodingHorror
One of the few light-colored themes, Jeff’s also uses a custom font to make 0 and O stand out. Note that the white background is more of a paper-colored off-white.Dave Reed’s Jedi Scheme
Dave’s schema uses a complete black, and a neon blue. A little intense, but much higher contrast.Visual Studio Themes MonokaiDamien Guard’s Humane
This earthy theme includes little details like smart fonts and italics.Tomas Restrepo’s Themes
Tomas has done a huge amount of work in this space. You can get seven of his themes here. He’s even got a tool to port color schemes from Visual Studio to SQL Management Studio. Desert Nights
This theme uses the greatest range of colors outside of the Vibrant Ink them, and approaches, but doesn’t reach, a number of primary colors.Garden of Eden
Green, Kermit-green, sea-green, they are all here in this blue-green theme.Ragnarok
Initially similar to many dark themes, this one uses complementary colors to provide contrast between identifiers and keywords, string literals and comments.Nightingale
A more cheerful dark theme that includes italics for string literals and brighter neons for keywords.Moria Alternate
This uses Deja Vu Sans Mono as it’s font and uses a lot more neutrals and grays outside of the keyword space.Brad Wilson Dark Visual Studio
A muted, low-contrast theme with blues and purples. Even the yellow is relaxed.Martin Plante (slimCODE)
Martin likes small text, no ClearType to take advantage of crisp LCD screens. Rather than committing to blue or black he goes for a navy-gray-blue background.Visual Studio Themes 2019John Lam’s Vibrant Ink Port
John’s trying for a straight port of Textmate’s famous Vibrant Ink. This is a sharp, bright, neo-classic theme. Note his use of Monaco.Rob Conery - Textmate
This is Rob’s take on Vibrant Ink, added Consolas as the font, some bolding, and lowers the contrast a smidge.
Post links your themes in the comments!
Related PostsAbout ScottVisual Studio Themes Mac
Scott Hanselman is a former professor, former Chief Architect in finance, now speaker, consultant, father, diabetic, and Microsoft employee. He is a failed stand-up comic, a cornrower, and a book author.Visual Studio Themes GalleryAboutNewsletter
Download here: http://gg.gg/vy0la
https://diarynote-jp.indered.space
Color themes let you modify the colors in Visual Studio Code’s user interface to suit your preferences and work environment.
*Visual Studio Themes 2020
*Visual Studio Themes Monokai
*Visual Studio Themes 2019
*Visual Studio Themes Mac
*Visual Studio Themes GallerySelecting the Color Theme
*In VS Code, open the Color Theme picker with File > Preferences > Color Theme. (Code > Preferences > Color Theme on macOS).
*You can also use the keyboard shortcut ⌘K ⌘T (Windows, Linux Ctrl+K Ctrl+T) to display the picker.
*Use the cursor keys to preview the colors of the theme.
*Select the theme you want and press Enter.
*Color Themes for Visual Studio This extension installs additional color themes for Visual Studio. Similar to the Color Theme Editor, but without the editor - just the themes. Includes all the themes available in the Color Theme Editor, plus additional themes contributed by the community.
*Rainglow is a collection of color themes for a number of different editors and platforms. This repository consists of 320+ syntax and UI themes for Visual Studio. To show support for the project, you can do any (or many!) of the following: Wear a theme. Star the repository. Follow me on twitter, and say hi! Share on refind.
The theme now has over 870k+ installs with 5 for its ratings. You will also have options to use Italic for your fonts, this is one of the most popular themes in Visual Studio Code as of today. Preview VSCode themes from the Visual Studio Marketplace. Browse by trending, dark, or light themes.
The active color theme is stored in your user settings (keyboard shortcut ⌘, (Windows, Linux Ctrl+,)).
Tip: By default, the theme is stored in your user settings and applies globally to all workspaces. You can also configure a workspace specific theme. To do so, set a theme in the Workspace settings.Color Themes from the Marketplace
There are several out-of-the-box color themes in VS Code for you to try.
Many more themes have been uploaded to the VS Code Extension Marketplace by the community. If you find one you want to use, install it and restart VS Code and the new theme will be available.
You can search for themes in the Extensions view (⇧⌘X (Windows, Linux Ctrl+Shift+X)) search box using the @category:’themes’ filter.Customizing a Color ThemeWorkbench colors
You can customize your active color theme with the workbench.colorCustomizations and editor.tokenColorCustomizations user settings.
To set the colors of VS Code UI elements such as list & trees (File Explorer, suggestions widget), diff editor, Activity Bar, notifications, scroll bar, split view, buttons, and more, use workbench.colorCustomizations.
You can use IntelliSense while setting workbench.colorCustomizations values or, for a list of all customizable colors, see the Theme Color Reference.
To customize a specific theme only, use the following syntax:Editor syntax highlighting
To tune the editor’s syntax highlighting colors, use editor.tokenColorCustomizations in your user settingssettings.json file:
A pre-configured set of syntax tokens (’comments’, ’strings’, ...) is available for the most common constructs. If you want more, you can do so by directly specifying TextMate theme color rules:
Note: Directly configuring TextMate rules is an advanced skill as you need to understand on how TextMate grammars work. Go to the Color Theme guide for more information.
Again, to customize a specific theme only, use the following syntax:Editor semantic highlighting
Some languages (currently: TypeScript, JavaScript, Java) provide semantic tokens. Semantic tokens are based on the language service’s symbol understanding and are more accurate than the syntax tokens coming from the TextMate grammars that are driven by regular expressions. The semantic highlighting that is computed from the semantic tokens goes on top of syntax highlighting and can correct and enrich the highlighting as seen in the following example:
The ’Tomorrow Night Blue’ color theme without semantic highlighting:
The ’Tomorrow Night Blue’ color theme with semantic highlighting:
Notice the color differences based on language service symbol understanding:
*line 10: languageModes is colored as a parameter.
*line 11: Range and Position are colored as classes and document as a parameter.
*line 13: getFoldingRanges is colored as a function.
The settings editor.semanticHighlighting.enabled serves as the main control on whether semantic highlighting is applied. It can have values true, false, and configuredByTheme.
*true and false turn semantic highlighting on or off for all themes.
*configuredByTheme is the default and lets each theme control whether semantic highlighting is enabled or not. All the themes that ship with VS Code (for example, the ’Dark+’ default) have semantic highlighting enabled by default.
Users can override the theme setting by:
When semantic highlighting is enabled and available for a language, it is up to the theme to configure whether and how semantic tokens are colored. Some semantic tokens are standardized and map to well-established TextMate scopes. If the theme has a coloring rule for these TextMate scopes, the semantic token will be rendered with that color, without the need for any additional coloring rules.
Additional styling rules can be configured by the user in editor.semanticTokenColorCustomizations’:
To see what semantic tokens are computed and how they are styled, users can use the scope inspector (Developer: Inspect Editor Tokens and Scopes), which displays information for the text at the current cursor position.
If semantic tokens are available for the language at the given position and enabled by theme, the inspect tool shows a section semantic token type. The section shows the semantic token information (type and any number of modifiers) as well as the styling rules that apply.
More information on semantic tokens and styling rule syntax can be found in the Semantic Highlighting Guide.Creating your own Color Theme
Creating and publishing a theme extension is easy. Customize your colors in your user settings then generate a theme definition file with the Developer: Generate Color Theme From Current Settings command.
VS Code’s Yeoman extension generator will help you generate the rest of the extension.
See the Create a new Color Theme topic in our Extension API section to learn more.Remove default Color Themes
If you’d like to remove some of the default themes shipped with VS Code from the Color Theme picker, you can disable them from the Extensions view (⇧⌘X (Windows, Linux Ctrl+Shift+X)). Open the ...More Actions dropdown menu from the top of the Extensions view, select Show Built-in Extensions, and you’ll see a THEMES section listing the default themes.
You can disable a built-in theme extension as you would any other VS Code extension with the Disable command on the gear context menu.File Icon Themes
File icon themes can be contributed by extensions and selected by users as their favorite set of file icons. File icons are shown in the File Explorer and tabbed headings.Selecting the File Icon Theme
*In VS Code, open the File Icon Theme picker with File > Preferences > File Icon Theme. (Code > Preferences > File Icon Theme on macOS).
*You can also use the Preferences: File Icon Theme command from the Command Palette (⇧⌘P (Windows, Linux Ctrl+Shift+P)).
*Use the cursor keys to preview the icons of the theme.
*Select the theme you want and hit Enter.
By default, the Seti file icon set is used and those are the icons you see in the File Explorer. Once a file icon theme is selected, the selected theme will be remembered and appear again whenever VS Code is restarted. You can disable file icons by selecting None.
VS code ships with two file icon themes; Minimal and Seti. To install more file icon themes, select the Install Additional File Icon Themes item in the file icon theme picker and you’ll see a query for file icon themes (tag:icon-theme) in the Extensions view.
You can also browse the VS Code Marketplace site directly to find available themes.
The active File Icon theme is persisted in your user settings (keyboard shortcut ⌘, (Windows, Linux Ctrl+,)).Creating your own File Icon Theme
You can create your own File Icon Theme from icons (preferably SVG), see the File Icon Theme topic in our Extension API section for details.Next steps
Themes are just one way to customize VS Code. If you’d like to learn more about VS Code customization and extensibility, try these topics:
*Settings - Learn how to configure VS Code to your preferences through user and workspace settings.
*Snippets - Add additional snippets to your favorite language.
*Extension API - Learn about other ways to extend VS Code.
*Color Theme - Color Theme extension API.
*File Icon Theme - File Icon Theme extension API. Sponsored By
UPDATE: http://studiostyles.info/ for a great growing community of Visual Studio Styles and Themes. You can create, import and export themes in your browser!Visual Studio Themes 2020
More and more I find myself ’skinning and themeing’ my Visual Studio development environment in order to stay frosty. It’s surprising how changing your theme (fonts, colors, etc.) can re-energize me when I’m having trouble with some problem or motivation.
Here’s a gallery of some nice Visual Studio Themes to refresh your look.
Remember to always back up your settings so you can get back to the way things were and have no fear when you’re changing your settings. Note also that some of these settings files you’ll find out in the wild may (mistakenly) have Keyboard Bindings included. You’ll want to selectively import just the fonts and colors that you want and avoid importing over your own custom keyboard settings.
I switched to a darker scheme a while back, as have many others. I also spent a while looking for the perfect font as have others. When you stumble on a 2005 theme that you want ot use in 2008, Tomas has an XSLT to make the transition smoother.Oren Ellenbogen’s Dark Scheme
A lot of the darker schemes like Oren’s don’t use a True Black, but an ’off black.’ His theme is very low contrast and uses muted, relaxing colors. Mike ’Blowmage’ Moore’s Ruby Blue
This is a low-contrast calm schema, but operators and numbers have a little ’pop’ to them.Vibrant Borland by Mawi
This one bring backs good memories of writing Borland C++ with OWL and Turbovision, with a little Norton Commander thrown in for fun.CodingHorror
One of the few light-colored themes, Jeff’s also uses a custom font to make 0 and O stand out. Note that the white background is more of a paper-colored off-white.Dave Reed’s Jedi Scheme
Dave’s schema uses a complete black, and a neon blue. A little intense, but much higher contrast.Visual Studio Themes MonokaiDamien Guard’s Humane
This earthy theme includes little details like smart fonts and italics.Tomas Restrepo’s Themes
Tomas has done a huge amount of work in this space. You can get seven of his themes here. He’s even got a tool to port color schemes from Visual Studio to SQL Management Studio. Desert Nights
This theme uses the greatest range of colors outside of the Vibrant Ink them, and approaches, but doesn’t reach, a number of primary colors.Garden of Eden
Green, Kermit-green, sea-green, they are all here in this blue-green theme.Ragnarok
Initially similar to many dark themes, this one uses complementary colors to provide contrast between identifiers and keywords, string literals and comments.Nightingale
A more cheerful dark theme that includes italics for string literals and brighter neons for keywords.Moria Alternate
This uses Deja Vu Sans Mono as it’s font and uses a lot more neutrals and grays outside of the keyword space.Brad Wilson Dark Visual Studio
A muted, low-contrast theme with blues and purples. Even the yellow is relaxed.Martin Plante (slimCODE)
Martin likes small text, no ClearType to take advantage of crisp LCD screens. Rather than committing to blue or black he goes for a navy-gray-blue background.Visual Studio Themes 2019John Lam’s Vibrant Ink Port
John’s trying for a straight port of Textmate’s famous Vibrant Ink. This is a sharp, bright, neo-classic theme. Note his use of Monaco.Rob Conery - Textmate
This is Rob’s take on Vibrant Ink, added Consolas as the font, some bolding, and lowers the contrast a smidge.
Post links your themes in the comments!
Related PostsAbout ScottVisual Studio Themes Mac
Scott Hanselman is a former professor, former Chief Architect in finance, now speaker, consultant, father, diabetic, and Microsoft employee. He is a failed stand-up comic, a cornrower, and a book author.Visual Studio Themes GalleryAboutNewsletter
Download here: http://gg.gg/vy0la
https://diarynote-jp.indered.space
コメント