1
Fork 0

Split constants, values, and delimiters

This commit is contained in:
Steffo 2024-12-11 11:19:59 +01:00
parent d07f8390e1
commit 799a1578bc
Signed by: steffo
GPG key ID: 5ADA3868646C3FC0

View file

@ -84,7 +84,7 @@
"storage", "storage",
], ],
"settings": { "settings": {
"foreground": "#F79159", // axiom 70 "foreground": "#D67643", // axiom 60
"fontStyle": "", "fontStyle": "",
} }
}, },
@ -125,6 +125,9 @@
"name": "Function calls", "name": "Function calls",
"scope": [ "scope": [
"meta.function.call entity.name.function", "meta.function.call entity.name.function",
"meta.function-call entity.name.function",
"string meta.function-call entity.name.function",
"string meta.function.call entity.name.function",
], ],
"settings": { "settings": {
"foreground": "#6E7D16", // action 50 "foreground": "#6E7D16", // action 50
@ -214,14 +217,36 @@
"foreground": "#0080A2", // information 50 "foreground": "#0080A2", // information 50
} }
}, },
{
"name": "Value delimiters",
"scope": [
"string punctuation",
"entity.name.function.tagged-template",
],
"settings": {
"foreground": "#8266C0", // possibility 50
"fontStyle": "",
}
},
{ {
"name": "Values", "name": "Values",
"scope": [ "scope": [
"constant", "constant.language",
"constant.numeric",
"string", "string",
], ],
"settings": { "settings": {
"foreground": "#D1BCFD", "foreground": "#B89BFA", // possibility 70
"fontStyle": "",
}
},
{
"name": "Constants",
"scope": [
"constant",
],
"settings": {
"foreground": "#EADDFF", // possibility 90
"fontStyle": "", "fontStyle": "",
} }
}, },
@ -237,4 +262,5 @@
} }
} }
], ],
"semanticHighlighting": true,
} }