Skip to content

Instantly share code, notes, and snippets.

@ro31337
Last active March 14, 2019 10:48
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ro31337/839a091aa135ca4114fbbe89c70da13e to your computer and use it in GitHub Desktop.
Save ro31337/839a091aa135ca4114fbbe89c70da13e to your computer and use it in GitHub Desktop.
VSCode Solarized Dark Theme customization
/*
How to install in VSCode:
1. "Ctrl ," to open User Settings
2. Paste color customization (everything below comment, you may also want to keep the comment)
3. Save!
{
"window.zoomLevel": 1,
"files.trimTrailingWhitespace": false,
"editor.tabSize": 2,
"editor.wordWrap": false,
"workbench.colorTheme": "Solarized Dark", // <-- You need to install this one
"atomKeymap.promptV3Features": true,
"editor.multiCursorModifier": "ctrlCmd",
"editor.formatOnPaste": true,
/*
Important customization for Solarized Dark theme:
default color (#073642) is barely visible on matching highlights.
Full black (#000) works nice!
(by Roman Pushkin)
*/
"workbench.colorCustomizations": {
"editor.selectionBackground": "#000"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment