Skip to content

Latest commit

 

History

History
63 lines (42 loc) · 3 KB

README.md

File metadata and controls

63 lines (42 loc) · 3 KB

This is a color theme for MS Visual Studio Code editor. Basically the theme is converted from the original Soda syntax theme but contains some reworks & improvements and based on the default Solarized Light theme. Also available Espresso Soda that based on the default Light theme.

Screenshots

Java Script:
Screenshot

Pug (manually reworked):
Screenshot

SCSS (CSS and Less are also supported):
Screenshot

HTML:
Screenshot

Less syntax

I recommend install better-less extension together with this theme for properly highlight Less syntax in VSC.

Installation

This theme is available for free in the Visual Studio Code Marketplace.

Activation

a) After install the theme, launch Command Palette

b) Type theme and choose Preferences: Color Theme, then select this theme from the list.

Customization

You can customize the colors to your liking, overriding the ones provided by this theme or extending them. More info here.

For example, the code below in the config.json file (Preferences > Settings) will change the CSS tag color to dark green:

"editor.tokenColorCustomizations": {
  "textMateRules": [
    {
      "scope": ["entity.name.tag.css", "entity.name.tag.less"],
      "settings": {
        "foreground": "#61862F"
      }
    }
  ]
}

The scopes are identified by using Command Palette > Developer: Inspect TM Scopes.

Contribution

Report issues, bugs to the issue tracker.