From 601c36e0d66996afc0b788959191b9cff2b353f4 Mon Sep 17 00:00:00 2001 From: uncenter <47499684+uncenter@users.noreply.github.com> Date: Mon, 9 Sep 2024 15:04:36 -0400 Subject: [PATCH] fix: update `operator` and `tag` to match style guide (#44) --- sass/_theme.scss | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/sass/_theme.scss b/sass/_theme.scss index 18bc2ed..c99039a 100644 --- a/sass/_theme.scss +++ b/sass/_theme.scss @@ -9,7 +9,7 @@ $highlights: ( "type": "yellow", "literal": "peach", "number": "peach", - "operator": "teal", + "operator": "sky", "punctuation": "subtext1", "property": "teal", "regexp": "pink", @@ -28,8 +28,10 @@ $highlights: ( "doctag": "red", "meta": "peach", "section": "blue", - "tag": "subtext0", + "tag": "teal", + /* Should be blue as it themes HTML tags, but blue tags next to blue attributes names is hard to read (see `attr` below for blue attribute names). */ "name": "mauve", + /* Should be yellow as it themes HTML attribute names, but it also themes YAML keys. Having innacurate YAML keys looks arguably worse than slightly bad attribute coloring, so blue it is. */ "attr": "blue", "attribute": "green", "bullet": "teal",