Skip to content
| Marketplace
Sign in
Visual Studio Code>Themes>clear-code-darkNew to Visual Studio Code? Get it now.
clear-code-dark

clear-code-dark

vbudko

|
313 installs
| (1) | Free
Dark theme, with a complete cleaning of the syntax highlighting of the code, for further customization
Installation
Launch VS Code Quick Open (Ctrl+P), paste the following command, and press enter.
Copied to clipboard
More Info

Readme

This extension completely resets syntax highlighting, so you can assign your own colors starting from scratch.

Make changes

  • Open File > Preferences > Color Themes and pick clear-code-dark theme.
  • To find out the language grammar markers, open the file with the language you need and call the Inspect TM Scopes command from the command palette (Ctrl+Shift+P or Cmd+Shift+P on a Mac).
  • To tune the editor's syntax highlighting colors, use editor.tokenColorCustomizations in your user settings settings.json file like:
    "editor.tokenColorCustomizations": {
      "[clear-code-dark]": {
        "textMateRules": [
          {
            "scope": [
              "string.quoted.double.js",
              "string.quoted.template.js",
              "string.quoted.single.js"
            ],
            "settings": {
              "foreground": "#6A8759",
              "fontstyle" : ""
            }
          }
        ]
      }
    }
    
    
  • Make changes as you see fit and enjoy your own unique color theme.

Adopt your theme to Visual Studio Code

  • The token colorization is done based on standard TextMate themes. Colors are matched against one or more scopes.

To learn more about scopes and how they're used, check out the color theme documentation.

  • Contact us
  • Jobs
  • Privacy
  • Manage cookies
  • Terms of use
  • Trademarks
© 2025 Microsoft