Skip to content

Instantly share code, notes, and snippets.

@LeaVerou
Created August 3, 2021 11:24
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save LeaVerou/753743f2877dbb630adbda7f1cc0a6f5 to your computer and use it in GitHub Desktop.
Save LeaVerou/753743f2877dbb630adbda7f1cc0a6f5 to your computer and use it in GitHub Desktop.
VS Code Solarized Light that looks like Atom’s Solarized Light (WIP)
{
"workbench.colorTheme": "Solarized Light",
"editor.fontFamily": "Consolas, Menlo, Monaco, 'Courier New', monospace",
"editor.insertSpaces": false,
"editor.inlineSuggest.enabled": true,
"editor.fontSize": 14.5,
"editor.renderWhitespace": "boundary",
"editor.codeLens": false,
"editor.inlayHints.fontFamily": "Consolas, Menlo, Monaco, 'Courier New', monospace",
"diffEditor.codeLens": true,
"editor.minimap.enabled": false,
"editor.acceptSuggestionOnEnter": "smart",
"gulp.autoDetect": "on",
"files.trimTrailingWhitespace": true,
"workbench.iconTheme": "file-icons",
"editor.tokenColorCustomizations": {
"[Solarized Light]": {
"keywords": {
"foreground": "#859900",
"fontStyle": ""
},
"textMateRules": [
{
"scope": [
"source.js",
"variable.language.this.js",
"variable.language.super.js",
"variable.other.readwrite.js",
"punctuation.definition.template-expression.begin.js",
"punctuation.definition.template-expression.end.js"
],
"settings": {
"foreground": "#657b83"
}
},
{
"scope": [
"variable.parameter.js"
],
"settings": {
"foreground": "#268bd2"
}
},
{
"scope": [
"constant.language.boolean.true.js"
],
"settings": {
"foreground": "#d33682"
}
}
]
}
},
"workbench.colorCustomizations": {
"[Solarized Light]": {
"editor.foreground": "#657b83",
"editorWhitespace.foreground": "#dcd0a9",
"editorIndentGuide.background": "#ffffff00",
"editorIndentGuide.activeBackground": "#dcd0a9",
"editorGutter.background": "#eee8d5",
"editorLineNumber.foreground": "#657b8399",
"editor.lineHighlightBackground": "#f3c85426"
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment