Created
April 1, 2019 20:12
-
-
Save kcxt/e2672393654b8cd174e6a8992669635a to your computer and use it in GitHub Desktop.
Cusotm nohappinessincolors theme for vscode
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
| { | |
| "type": "dark", | |
| "colors": { | |
| "focusBorder": "#666666", | |
| "activityBar.background": "#161616", | |
| "activityBar.dropBackground": "#121212", | |
| "activityBar.foreground": "#444444", | |
| "activityBarBadge.background": "#666666", | |
| "activityBarBadge.foreground": "#aaaaaa", | |
| "badge.foreground": "#888888", | |
| "badge.background": "#444444", | |
| "button.background": "#444444", | |
| "button.hoverBackground": "#666666", | |
| "button.foreground": "#aaaaaa", | |
| "dropdown.background": "#222222", | |
| "dropdown.border": "#222222", | |
| "dropdown.foreground": "#aaaaaa", | |
| "list.activeSelectionBackground": "#444444", | |
| "list.activeSelectionForeground": "#888888", | |
| "list.dropBackground": "#333333", | |
| "list.focusBackground": "#666666", | |
| "list.highlightForeground": "#333333", | |
| "list.inactiveSelectionBackground": "#333333", | |
| "list.inactiveSelectionForeground": "#666666", | |
| "list.hoverBackground": "#333333", | |
| "list.hoverForeground": "#888888", | |
| "list.focusForeground": "#888888", | |
| "sideBar.background": "#141414", | |
| "sideBar.foreground": "#666666", | |
| "sideBar.border": "#141414", | |
| "sideBarTitle.foreground": "#888888", | |
| "sideBarSectionHeader.background": "#222222", | |
| "sideBarSectionHeader.foreground": "#888888", | |
| "editorGroup.background": "#161616", | |
| "editorGroup.border": "#181818", | |
| "editorGroup.dropBackground": "#141414", | |
| "editorGroupHeader.noTabsBackground": "#161616", | |
| "editorGroupHeader.tabsBackground": "#161616", | |
| "editorGroupHeader.tabsBorder": "#161616", | |
| "tab.activeBackground": "#121212", | |
| "tab.activeForeground": "#888888", | |
| "tab.border": "#161616", | |
| "tab.activeBorder": "#121212", | |
| "tab.unfocusedActiveBorder": "#161616", | |
| "tab.inactiveBackground": "#1f1f1f", | |
| "tab.inactiveForeground": "#666666", | |
| "tab.unfocusedActiveForeground": "#666666", | |
| "tab.unfocusedInactiveForeground": "#444444", | |
| "editor.background": "#121212", | |
| "editor.foreground": "#c2c2b0", | |
| "editor.selectionBackground": "#222222", | |
| "editor.selectionHighlightBackground": "#333333", | |
| "editor.inactiveSelectionBackground": "#333333", | |
| "editor.lineHighlightBackground": "#222222", | |
| "editorCursor.foreground": "#c2c2b0", | |
| "editorWhitespace.foreground": "#444444", | |
| "editorIndentGuide.background": "#333333", | |
| "editor.wordHighlightBackground": "#444444", | |
| "editor.wordHighlightStrongBackground": "#444444", | |
| "editor.hoverHighlightBackground": "#444444", | |
| "editor.findMatchBackground": "#444444", | |
| "editor.findMatchHighlightBackground": "#313C40", | |
| "editor.findRangeHighlightBackground": "#313C40", | |
| "editorBracketMatch.background": "#455255", | |
| "editorBracketMatch.border": "#455255", | |
| "editorLink.activeForeground": "#222222", | |
| "editorWidget.background": "#222222", | |
| "editorWidget.border": "#222222", | |
| "statusBar.background": "#666666", | |
| "statusBar.foreground": "#aaaaaa", | |
| "statusBar.noFolderBackground": "#666666", | |
| "statusBar.noFolderForeground": "#aaaaaa" | |
| }, | |
| "tokenColors": [ | |
| { | |
| "settings": { | |
| "foreground": "#c2c2b0ff", | |
| "background": "#121212ff" | |
| } | |
| }, | |
| { | |
| "name": "Comment", | |
| "scope": "comment", | |
| "settings": { | |
| "fontStyle": "underline", | |
| "foreground": "#444444" | |
| } | |
| }, | |
| { | |
| "name": "String", | |
| "scope": "string", | |
| "settings": { | |
| "fontStyle": "", | |
| "foreground": "#444444" | |
| } | |
| }, | |
| { | |
| "name": "Number", | |
| "scope": "constant.numeric", | |
| "settings": { | |
| "foreground": "#ffffff" | |
| } | |
| }, | |
| { | |
| "name": "Built-in constant", | |
| "scope": "constant.language", | |
| "settings": { | |
| "foreground": "#ccccccD" | |
| } | |
| }, | |
| { | |
| "name": "User-defined constant", | |
| "scope": "constant.character, constant.other", | |
| "settings": { | |
| "foreground": "#cccccc" | |
| } | |
| }, | |
| { | |
| "name": "Variable", | |
| "scope": "variable", | |
| "settings": { | |
| "fontStyle": "", | |
| "foreground": "#cccccc" | |
| } | |
| }, | |
| { | |
| "name": "Keyword", | |
| "scope": "keyword", | |
| "settings": { | |
| "foreground": "#555555" | |
| } | |
| }, | |
| { | |
| "name": "Storage", | |
| "scope": "storage", | |
| "settings": { | |
| "foreground": "#555555" | |
| } | |
| }, | |
| { | |
| "name": "Storage type", | |
| "scope": "storage.type", | |
| "settings": { | |
| "foreground": "#555555" | |
| } | |
| }, | |
| { | |
| "name": "Class name", | |
| "scope": "entity.name.class", | |
| "settings": { | |
| "foreground": "#aaaaaa" | |
| } | |
| }, | |
| { | |
| "name": "Inherited class", | |
| "scope": "entity.other.inherited-class", | |
| "settings": { | |
| "foreground": "#999999" | |
| } | |
| }, | |
| { | |
| "name": "Function name", | |
| "scope": "entity.name.function", | |
| "settings": { | |
| "fontStyle": "", | |
| "foreground": "#aaaaaa" | |
| } | |
| }, | |
| { | |
| "name": "Function argument", | |
| "scope": "variable.parameter", | |
| "settings": { | |
| "foreground": "#999999" | |
| } | |
| }, | |
| { | |
| "name": "Tag name", | |
| "scope": "entity.name.tag", | |
| "settings": { | |
| "fontStyle": "", | |
| "foreground": "#888888" | |
| } | |
| }, | |
| { | |
| "name": "Tag attribute", | |
| "scope": "entity.other.attribute-name", | |
| "settings": { | |
| "fontStyle": "", | |
| "foreground": "#999999" | |
| } | |
| }, | |
| { | |
| "name": "Library function", | |
| "scope": "support.function", | |
| "settings": { | |
| "foreground": "#999999" | |
| } | |
| }, | |
| { | |
| "name": "Library constant", | |
| "scope": "support.constant", | |
| "settings": { | |
| "foreground": "#999999" | |
| } | |
| }, | |
| { | |
| "name": "Library class/type", | |
| "scope": "support.type, support.class", | |
| "settings": { | |
| "foreground": "#999999" | |
| } | |
| }, | |
| { | |
| "name": "Library variable", | |
| "scope": "support.other.variable", | |
| "settings": { | |
| "fontStyle": "" | |
| } | |
| }, | |
| { | |
| "name": "Invalid", | |
| "scope": "invalid", | |
| "settings": { | |
| "background": "#FF3333", | |
| "fontStyle": "", | |
| "foreground": "#F8F8F0" | |
| } | |
| }, | |
| { | |
| "name": "Invalid deprecated", | |
| "scope": "invalid.deprecated", | |
| "settings": { | |
| "background": "#CCAAFF", | |
| "foreground": "#FFFFFF" | |
| } | |
| }, | |
| { | |
| "name": "[VSCODE-CUSTOM] Markdown headings", | |
| "scope": "entity.name.section.markdown", | |
| "settings": { | |
| "foreground": "#999999" | |
| } | |
| }, | |
| { | |
| "name": "[VSCODE-CUSTOM] Markdown List Punctuation Definition", | |
| "scope": "beginning.punctuation.definition.list.markdown", | |
| "settings": { | |
| "foreground": "#999999" | |
| } | |
| }, | |
| { | |
| "name": "Operator", | |
| "scope": "keyword.operator", | |
| "settings": { | |
| "foreground": "#444444" | |
| } | |
| }, | |
| { | |
| "scope": "token.info-token", | |
| "settings": { | |
| "foreground": "#6796e6" | |
| } | |
| }, | |
| { | |
| "scope": "token.warn-token", | |
| "settings": { | |
| "foreground": "#cd9731" | |
| } | |
| }, | |
| { | |
| "scope": "token.error-token", | |
| "settings": { | |
| "foreground": "#f44747" | |
| } | |
| }, | |
| { | |
| "scope": "token.debug-token", | |
| "settings": { | |
| "foreground": "#b267e6" | |
| } | |
| } | |
| ] | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment