Last active
March 14, 2019 10:48
-
-
Save ro31337/839a091aa135ca4114fbbe89c70da13e to your computer and use it in GitHub Desktop.
VSCode Solarized Dark Theme customization
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
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