Skip to content

dev01d/devoid-theme

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Devoid VS Code theme

A dark theme for VS Code with italics support.

Version Downloads Installs Rating

js/jsx

Preview jsx

html

Preview html

css

Preview css

json

Preview json

Installation

  1. Open Extensions sidebar panel in VS Code. View → Extensions
  2. Search for Devoid
  3. Click Install to install it.
  4. Click Reload to reload the your editor
  5. Code > Preferences > Color Theme > Devoid

Recommended settings

{
  "editor.wordWrap": "on",
  // Italics support defaults to true for cursive font.
  // Enable a font that supports it like Operator/Fira/Dank mono
  "editor.fontFamily": "Operator Mono, Menlo, Monaco, 'Courier New', monospace",
  "files.trimTrailingWhitespace": true
}

A note on italics/cursive

These are the settings that are used to create the italics support. If you would like to remove italics for a certain scope add it to settings.json.

Example:

// remove variable italics
"editor.tokenColorCustomizations": {
  "textMateRules": [
    {
      "scope": [
        "storage.type"
      ],
      "settings": {
        "fontStyle": ""
      }
    }
  ]
}