Created
October 17, 2020 19:30
-
-
Save ckcr4lyf/0950db9b775b033d6d7a222501d8226b 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.colorTheme": "Default High Contrast", | |
"workbench.colorCustomizations": { | |
"[Default High Contrast]": { | |
"editor.background": "#070025", | |
"editor.foreground": "#037cbd", | |
"editor.lineHighlightBorder": "#ff00ff", | |
"editor.selectionBackground": "#ffb4f5a4", | |
"selection.background": "#008000", | |
"statusBarItem.remoteBackground": "#f807d800", | |
"activityBar.background": "#070025", | |
"activityBar.border": "#124da5", | |
"editorGroupHeader.border": "#124da5", | |
"editorGroupHeader.tabsBackground": "#0d0143", | |
"sideBar.background": "#0d0143", | |
"sideBar.border": "#124da5", | |
"tab.border": "#124da5", | |
"tab.inactiveBackground": "#0d0143", | |
"titleBar.activeBackground": "#0d0143", | |
"titleBar.border": "#124da5", | |
} | |
}, | |
"editor.tokenColorCustomizations": { | |
"textMateRules": [ | |
{ | |
"scope": "constant.language", | |
"settings": { | |
"foreground": "#a507a5" | |
} | |
}, | |
{ | |
"scope": [ | |
"constant.numeric", | |
"constant.other.color.rgb-value", | |
"constant.other.rgb-value", | |
"support.constant.color" | |
], | |
"settings": { | |
"foreground": "#aa00ff" | |
} | |
}, | |
{ | |
"scope": "storage", | |
"settings": { | |
"foreground": "#9755f5" | |
} | |
}, | |
{ | |
"scope": "storage.type", | |
"settings": { | |
"foreground": "#9755f5" | |
} | |
}, | |
{ | |
"scope": "storage.modifier", | |
"settings": { | |
"foreground": "#9755f5" | |
} | |
}, | |
{ | |
"scope": "string", | |
"settings": { | |
"foreground": "#9755f5" | |
} | |
}, | |
{ | |
"scope": "string.tag", | |
"settings": { | |
"foreground": "#9755f5" | |
} | |
}, | |
{ | |
"scope": "string.value", | |
"settings": { | |
"foreground": "#9755f5" | |
} | |
}, | |
{ | |
"scope": "keyword.control", | |
"settings": { | |
"foreground": "#a53061" | |
} | |
}, | |
{ | |
"scope": [ | |
"keyword.operator.new", | |
"keyword.operator.expression", | |
"keyword.operator.cast", | |
"keyword.operator.sizeof", | |
"keyword.operator.logical.python" | |
], | |
"settings": { | |
"foreground": "#aa00ff" | |
} | |
}, | |
{ | |
"scope": "variable.language.this", | |
"settings": { | |
"foreground": "#f84fc0" | |
} | |
}, | |
{ | |
"scope": [ | |
"entity.name.function", | |
"support.function", | |
"support.constant.handlebars", | |
"source.powershell variable.other.member" | |
], | |
"settings": { | |
"foreground": "#f389f3" //ff00ff | |
} | |
}, | |
{ | |
"scope": [ | |
"variable", | |
"meta.definition.variable.name", | |
"support.variable" | |
], | |
"settings": { | |
"foreground": "#dd20cd" //console, class property | |
} | |
}, | |
{ | |
"scope": [ | |
"variable.other.property", | |
"support.variable.property", | |
"variable.other.constant.property" | |
], | |
"settings": { | |
"foreground": "#f8a5f8" | |
} | |
}, | |
{ | |
"scope": [ | |
"meta.object-literal.key" | |
], | |
"settings": { | |
"foreground": "#e40d9c" //The color of key of JSON object | |
} | |
}, | |
{ | |
"scope": [ | |
"meta.return-type", | |
"support.class", | |
"support.type", | |
"entity.name.type", | |
"entity.name.namespace", | |
"entity.name.scope-resolution", | |
"entity.name.class" | |
], | |
"settings": { | |
"foreground": "#e40d9c" | |
} | |
}, | |
{ | |
"scope": "comment", | |
"settings": { | |
"foreground": "#02b7d6" | |
} | |
}, | |
{ | |
"scope": "keyword.operator", | |
"settings": { | |
"foreground": "#037cbd", | |
// "fontStyle": "bold" | |
} | |
} | |
] | |
}, |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment