From 3b34cec64cd0c4527a315ace7fb3e8f6ed081b25 Mon Sep 17 00:00:00 2001 From: Luflosi Date: Mon, 25 Feb 2019 14:40:39 +0100 Subject: [PATCH] Consistent case for color codes --- kittens/diff/config_data.py | 2 +- kitty/config_data.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/kittens/diff/config_data.py b/kittens/diff/config_data.py index d86bfca01..c59ca50e3 100644 --- a/kittens/diff/config_data.py +++ b/kittens/diff/config_data.py @@ -85,7 +85,7 @@ c('hunk_bg', '#f1f8ff') c('search_bg', '#444', long_text=_('Highlighting')) c('search_fg', 'white') -c('select_bg', '#B4D5FE') +c('select_bg', '#b4d5fe') c('select_fg', 'black') g('shortcuts') diff --git a/kitty/config_data.py b/kitty/config_data.py index b833c0734..833bc4c02 100644 --- a/kitty/config_data.py +++ b/kitty/config_data.py @@ -371,7 +371,7 @@ Use negative numbers to change scroll direction.''')) g('mouse') # {{{ -o('url_color', '#0087BD', option_type=to_color, long_text=_(''' +o('url_color', '#0087bd', option_type=to_color, long_text=_(''' The color and style for highlighting URLs on mouse-over. :code:`url_style` can be one of: none, single, double, curly''')) @@ -693,7 +693,7 @@ def selection_foreground(x): o('selection_foreground', '#000000', option_type=selection_foreground, long_text=_(''' The foreground for text selected with the mouse. A value of none means to leave the color unchanged.''')) -o('selection_background', '#FFFACD', option_type=to_color, long_text=_(''' +o('selection_background', '#fffacd', option_type=to_color, long_text=_(''' The background for text selected with the mouse.''')) g('colors.table')