Skip to content

Instantly share code, notes, and snippets.

@praveen001
Created December 27, 2019 15:00
Show Gist options
  • Save praveen001/5e9139b147875ae3688dd6ab01de8b6c to your computer and use it in GitHub Desktop.
Save praveen001/5e9139b147875ae3688dd6ab01de8b6c to your computer and use it in GitHub Desktop.
VSCode Setup - Theme
{
"editor.multiCursorModifier": "ctrlCmd",
"editor.snippetSuggestions": "bottom",
"window.zoomLevel": 0,
"workbench.colorCustomizations": {
"statusBar.background": "#000",
"statusBar.border": "#222",
"statusBar.foreground": "#02bb7d",
"sideBar.background": "#081014",
"sideBar.border": "#222",
"sideBarTitle.foreground": "#FFF",
"sideBarSectionHeader.background": "#222",
"sideBarSectionHeader.foreground": "#fff",
"sideBar.foreground": "#fff",
"dropdown.background": "#000",
"dropdown.listBackground": "#000",
"editor.findMatchBackground": "#003b28",
"panel.background": "#000",
"panelTitle.activeForeground": "#02bb7d",
"panelTitle.inactiveForeground": "#aaa",
"terminal.background": "#000",
"terminal.foreground": "#FFF",
"tab.border": "#222",
"editorGroupHeader.tabsBackground": "#000",
"tab.inactiveForeground": "#aaa",
"tab.inactiveBackground": "#000",
"tab.activeBorderTop": "#02bb7d",
"tab.activeForeground": "#7bf0c9",
"tab.activeBackground": "#081014",
"editor.background": "#081014",
"editorBracketMatch.border": "#fff",
"editorBracketMatch.background": "#222",
"editorSuggestWidget.background": "#111",
"editorHoverWidget.background": "#111",
"editor.lineHighlightBackground": "#122129",
"editor.wordHighlightBackground": "#0f2b38",
"activityBar.border": "#222",
"activityBar.background": "#081014",
"activityBarBadge.background": "#005f41",
"menu.background": "#111",
"titleBar.activeBackground": "#081014",
"breadcrumb.background": "#111",
"breadcrumb.foreground": "#ccc",
"list.dropBackground": "#050505"
},
"editor.tokenColorCustomizations": {
"[Default Dark+]": {
"keywords": {
"fontStyle": "italic",
"foreground": "#f92672"
},
"comments": {
"fontStyle": "italic",
"foreground": "#588500"
},
"functions": "#d6b004",
},
},
"terminal.integrated.letterSpacing": 2,
"terminal.integrated.lineHeight": 1.2,
"workbench.sideBar.location": "right",
"workbench.statusBar.feedback.visible": false,
"window.titleBarStyle": "custom",
"diffEditor.ignoreTrimWhitespace": true,
"terminal.integrated.rendererType": "dom",
"editor.wordBasedSuggestions": false,
"editor.fontFamily": "'Operator Mono Lig'",
"editor.fontSize": 16,
"[json]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[javascript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"editor.fontLigatures": true,
"workbench.iconTheme": "material-icon-theme",
"editor.cursorBlinking": "phase",
"editor.detectIndentation": false,
"editor.cursorSmoothCaretAnimation": true,
"editor.suggestSelection": "first",
"editor.fontWeight": "100"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment