From ec0e26b68bc7fd8b809db1992e26af55c35e3420 Mon Sep 17 00:00:00 2001 From: Jeremia Dominguez Date: Mon, 6 May 2024 22:22:52 -0500 Subject: [PATCH] Added missing colors to dark_high_contrast I'd been using this theme quite a while because it looks the nicest to my dyslexia. That said, when I open up XML or HTML documents, they pretty much always show up in complete white, except for attribute values. Finally decided to take a look at why, and added the two colors (`tag` & `attribute`) needed to make the theme actually usable with the two formats. --- runtime/themes/dark_high_contrast.toml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/runtime/themes/dark_high_contrast.toml b/runtime/themes/dark_high_contrast.toml index 51701cfce935..ec9f880d3e16 100644 --- a/runtime/themes/dark_high_contrast.toml +++ b/runtime/themes/dark_high_contrast.toml @@ -83,6 +83,8 @@ "keyword.control" = "purple" "function" = "yellow" "label" = "blue" +"tag" = "aqua" +"attribute" = "blue" # Markup "markup.heading" = { fg = "yellow", modifiers = ["bold"], underline = { color = "yellow", style = "double_line"} }