Skip to content

Instantly share code, notes, and snippets.

@al6x
Last active August 12, 2021 17:16
Show Gist options
  • Save al6x/ab76450cb6940afe17991e74d7a8b78a to your computer and use it in GitHub Desktop.
Save al6x/ab76450cb6940afe17991e74d7a8b78a to your computer and use it in GitHub Desktop.
"workbench.colorTheme": "Default Light+",
"editor.tokenColorCustomizations": {
// gray 900 #111827
"textMateRules": [
{
"scope": [
"punctuation.definition.comment",
],
"settings": { "foreground": "#047857", "fontStyle": "bold" }
},
{
"scope": [
"comment",
],
"settings": { "foreground": "#047857" }
},
{
"scope": [
"entity.name.type.class",
"entity.name.function"
],
"settings": { "foreground": "#3730A3", "fontStyle": "bold" }
},
{
"scope": [
"source",
"support.class",
"support.function",
"variable.other",
"constant.language",
"keyword.boolean",
"keyword.control.pseudo-method",
"meta.function.method.with-arguments",
"variable.parameter.function",
"meta.function-call",
"meta.function-call entity.name.function",
"support.type",
"storage.type",
"entity.other.inherited-class"
],
"settings": { "foreground": "#111827", "fontStyle": "" }
},
{
"scope": [
"support.type",
"storage.type",
],
"settings": { "foreground": "#6366F1", "fontStyle": "" }
},
{
"scope": [
// "constant.numeric"
],
"settings": { "foreground": "#1E40AF" } // 818CF8
},
{
"scope": [
"meta.function.method",
// "meta.function.method.with-arguments",
"variable.other.readwrite.instance"
],
"settings": { "foreground": "#92400E" } // 818CF8
},
{
"scope": [
"keyword.control",
"keyword.other",
"punctuation.section.embedded.begin",
"punctuation.definition.template-expression.begin",
"punctuation.definition.template-expression.end"
],
"settings": { "foreground": "#3730A3" } // 818CF8
},
{
"scope": [
],
"settings": { "foreground": "#6366F1" } // 818CF8
},
{
"scope": [
"meta.preprocessor.pragma",
],
"settings": { "foreground": "#6B7280" } // 818CF8
},
],
},
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment