Last active
March 27, 2019 14:36
-
-
Save mechaneyes/0bd8630615f13cde33c690c169d88f21 to your computer and use it in GitHub Desktop.
Color customizations for VS Code
This file contains hidden or 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
// https://marketplace.visualstudio.com/items?itemName=wesbos.theme-cobalt2 | |
{ | |
"breadcrumbs.enabled": false, | |
// Path to the git executable. | |
"git.path": null, | |
"extensionsGallery": { | |
"serviceUrl": "https://marketplace.visualstudio.com/_apis/public/gallery", | |
"cacheUrl": "https://vscode.blob.core.windows.net/gallery/index", | |
"itemUrl": "https://marketplace.visualstudio.com/items" | |
}, | |
"workbench.startupEditor": "newUntitledFile", | |
"window.zoomLevel": 0, | |
"files.defaultLanguage": "html", | |
"editor.fontWeight": "900", | |
"workbench.colorCustomizations": { | |
"editor.background": "#232323", | |
"terminal.background" : "#232323", | |
"editor.lineHighlightBackground": "#232323", | |
"editor.lineHighlightBorder": "#ff9d00" | |
}, | |
"workbench.colorTheme": "Cobalt2", | |
// "editor.tokenColorCustomizations": { | |
// "textMateRules": [{ | |
// "scope": "entity.other.attribute-name.id.css, punctuation", | |
// "settings": { | |
// "foreground": "#F7FF0D" | |
// }, | |
// "scope": "text.html.derivative", | |
// "settings": { | |
// "foreground": "#3AD900" | |
// }, | |
// "scope": "punctuation", | |
// "settings": { | |
// // "foreground": "#3ad900ff" | |
// } | |
// }] | |
// } | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment