Skip to content

Instantly share code, notes, and snippets.

@mechaneyes
Last active March 27, 2019 14:36
Show Gist options
  • Save mechaneyes/0bd8630615f13cde33c690c169d88f21 to your computer and use it in GitHub Desktop.
Save mechaneyes/0bd8630615f13cde33c690c169d88f21 to your computer and use it in GitHub Desktop.
Color customizations for VS Code
// 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