1
Fork 0

Split keywords and punctuation

This commit is contained in:
Steffo 2024-12-11 09:47:27 +01:00
parent 86b087c671
commit 6b06f6eaa8
Signed by: steffo
GPG key ID: 5ADA3868646C3FC0

View file

@ -69,10 +69,19 @@
"scope": [ "scope": [
"keyword", "keyword",
"storage", "storage",
"punctuation",
], ],
"settings": { "settings": {
"foreground": "#FFB691", "foreground": "#F79159", // axiom 70
}
},
{
"name": "Punctuation",
"scope": [
"punctuation",
"meta.brace", // TypeScript braces
],
"settings": {
"foreground": "#B65E2D", // axiom 50
} }
}, },
{ {
@ -137,7 +146,7 @@
"semanticHighlighting": true, "semanticHighlighting": true,
"semanticTokenColors": { "semanticTokenColors": {
"comment": "#3C4279", "comment": "#3C4279",
"keyword": "#FFB691", "keyword": "#F79159",
"function": "#D4C972", "function": "#D4C972",
"interface": "#A2D399", "interface": "#A2D399",
"type": "#87D6BC", "type": "#87D6BC",