Babadzhanov / retro-vibes

Retro Vibes theme for Visual Studio Code

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Retro Vibes Theme Version

RetroVibes

Feel the Vibes with this Retro style inspired Visual Studio Code Theme.

Screenshots

screenshot-1

screenshot-2

screenshot-3

Install

Execute this command from the command line.

code --install-extension babadzhanov.retro-vibes

How to get the most of color decorations

Turn on/off options in settings menu or settings.json

  • Git decorations

git.decorations.enabled: true/false

git.decorations

  • Highlight modified tabs

workbench.editor.highlightModifiedTab: true/false

highlight-modified-tab

  • Problems decorations

problems.decorations.enabled: true/false

problems-decorations

  • Overview ruler border (under scroll)

editor.overviewRulerBorder: true/false

overview-ruler

  • Minimap

editor.minimap.enabled: true/false

minimap

Tweaks

To tweak this theme a little bit you can go to settings.json and modify fields accordingly:
(if you think a color can suit better to the overall vibe, please consider contributing down below)

Workbench colors

"workbench.colorCustomizations": {
    "[Retro Vibes]": {
        "focusBorder": "#7c8bb0",
        "foreground": "#a0a8bb",
        "widget.shadow": "#29334490",
        ...
    }
}

Syntax highlighting

"editor.tokenColorCustomizations": {
  "[Retro Vibes]": {
    "textMateRules": [
      {
        "scope": ["comment"],
        "settings": {
          "foreground": "#4b643e"
        }
      }
      ...
    ]
  }
}

Semantic highlighting

"editor.semanticTokenColorCustomizations": {
    "[Retro Vibes]": {
        "rules": {
            "*.declaration": { "bold": true }
            ...
        }
    }
}

Contributing

Please, report issues/bugs and suggestions here.

Change log

You can take a look at the change log.

Old version

Old version of the theme can be found here.

License

MIT © Simeon Babadzhanov

About

Retro Vibes theme for Visual Studio Code

License:MIT License