From df551bc9928a385bcca362c017cbe109e05c455b Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Mon, 13 Jan 2020 11:58:18 +0530 Subject: [PATCH] Change marker 1 color --- kitty/config_data.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kitty/config_data.py b/kitty/config_data.py index fab2fc92d..4886ae140 100644 --- a/kitty/config_data.py +++ b/kitty/config_data.py @@ -858,7 +858,7 @@ o('color7', '#dddddd', long_text=_('white'), option_type=to_color) o('color15', '#ffffff', option_type=to_color) o('mark1_foreground', 'black', long_text=_('Color for marks of type 1'), option_type=to_color) -o('mark1_background', '#cdc8ca', long_text=_('Color for marks of type 1 (light gray)'), option_type=to_color) +o('mark1_background', '#98d3cb', long_text=_('Color for marks of type 1 (light steel blue)'), option_type=to_color) o('mark2_foreground', 'black', long_text=_('Color for marks of type 2'), option_type=to_color) o('mark2_background', '#f2dcd3', long_text=_('Color for marks of type 1 (beige)'), option_type=to_color) o('mark3_foreground', 'black', long_text=_('Color for marks of type 3'), option_type=to_color)