From 738f1312698ab98780497133641a2277e8517662 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Martin=20K=C3=BChl?= Date: Sun, 24 Jul 2022 23:11:16 +0200 Subject: [PATCH] Fix gruvbox-tc colorscheme (#2240) The underline style is missing a color and accidentally using the background color for its foreground. This makes links essentially invisible. It's also missing the todo style. This change adds the missing style and color. Following the gruvbox colorscheme it uses the gruvbox shade of blue for links, and makes todos bold. --- runtime/colorschemes/gruvbox-tc.micro | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/runtime/colorschemes/gruvbox-tc.micro b/runtime/colorschemes/gruvbox-tc.micro index 05c8efe8..e41b1ac2 100644 --- a/runtime/colorschemes/gruvbox-tc.micro +++ b/runtime/colorschemes/gruvbox-tc.micro @@ -9,8 +9,9 @@ color-link statement "#fb4934,#282828" color-link preproc "#fb4934,235" color-link type "#fb4934,#282828" color-link special "#d79921,#282828" -color-link underlined "underline #282828" +color-link underlined "underline #458588,#282828" color-link error "#9d0006,#282828" +color-link todo "bold #ebdbb2,#282828" color-link hlsearch "#282828,#fabd2f" color-link diff-added "#00AF00" color-link diff-modified "#FFAF00" -- 2.44.0