Created
May 6, 2018 17:18
-
-
Save wende/d74d934f96e66f74e0b9d73fe9fbafa3 to your computer and use it in GitHub Desktop.
This file contains 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
"workbench.colorCustomizations": { | |
"activityBarBadge.background": "#2979FF", | |
"list.activeSelectionForeground": "#2979FF", | |
"list.inactiveSelectionForeground": "#2979FF", | |
"list.highlightForeground": "#2979FF", | |
"scrollbarSlider.activeBackground": "#2979FF50", | |
"editorSuggestWidget.highlightForeground": "#2979FF", | |
"textLink.foreground": "#2979FF", | |
"progressBar.background": "#2979FF", | |
"pickerGroup.foreground": "#2979FF", | |
"tab.activeBorder": "#2979FF", | |
"notificationLink.foreground": "#2979FF", | |
"editor.background": "#2F3542", | |
"editorGutter.background": "#2a303d", | |
"activityBar.background": "#2a303d", | |
"sideBar.background": "#2a303d", | |
"titleBar.activeBackground": "#2a303d", | |
"tab.activeBackground": "#2a303d", | |
"tab.inactiveBackground": "#232833", | |
"tab.unfocusedActiveBorder": "#009688", | |
"editorGroupHeader.tabsBackground": "#2a303d", | |
"terminal.background": "#232833", | |
"panel.background": "#2a303d", | |
"statusBar.foreground": "#a7a7a7" | |
}, | |
"materialTheme.cache.workbench.settings": {}, | |
"editor.tokenColorCustomizations": { | |
"strings": "#FC8458", | |
"functions": "#e2e7ec", | |
"keywords": "#44C0C6", | |
"variables": "#D1BC92", | |
"textMateRules": [ | |
{ | |
"scope": "variable.other.constant", | |
"settings": { | |
"foreground": "#D1BC92", | |
} | |
}, | |
{ | |
"scope": "keyword.other.special-method", | |
"settings": { | |
"foreground": "#44C0C6", | |
} | |
}, | |
{ | |
"scope": "variable.language", | |
"settings": { | |
"foreground": "#d79bff", | |
} | |
}, | |
{ | |
"scope": "constant.other.symbol", | |
"settings": { | |
"foreground": "#fa9672", | |
}, | |
}, | |
{ | |
"scope": "punctuation", | |
"settings": { | |
"foreground": "#bcc7d2", | |
}, | |
}, | |
{ | |
"scope": "entity.name.type", | |
"settings": { | |
"foreground": "#D1BC92", | |
}, | |
}, | |
{ | |
"scope": "source.elixir", | |
"settings": { | |
"foreground": "#bcc7d2", | |
}, | |
}, | |
] | |
}, |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment