From 6b06f6eaa89d77f9583e4d1ee382b1b72ce230d8 Mon Sep 17 00:00:00 2001 From: Stefano Pigozzi Date: Wed, 11 Dec 2024 09:47:27 +0100 Subject: [PATCH] Split keywords and punctuation --- themes/ShinyCode-color-theme.json | 15 ++++++++++++--- 1 file changed, 12 insertions(+), 3 deletions(-) diff --git a/themes/ShinyCode-color-theme.json b/themes/ShinyCode-color-theme.json index 7f147bd..a2be166 100644 --- a/themes/ShinyCode-color-theme.json +++ b/themes/ShinyCode-color-theme.json @@ -69,10 +69,19 @@ "scope": [ "keyword", "storage", - "punctuation", ], "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, "semanticTokenColors": { "comment": "#3C4279", - "keyword": "#FFB691", + "keyword": "#F79159", "function": "#D4C972", "interface": "#A2D399", "type": "#87D6BC",