summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJason Cox <me@jasoncarloscox.com>2023-05-22 06:52:34 -0400
committerChristian Geier <geier@lostpackets.de>2023-05-23 14:28:24 +0200
commit7fc368882ef0f22ff8483638384fc0089d596980 (patch)
treee18a2d54412e77dd4142e7ab525ecc2304a0e009
parent7d7424d6170ed0c52dba7b3069f736aa63c085db (diff)
Remove invalid mono value from light colors
Fixes #1250.
-rw-r--r--AUTHORS.txt1
-rw-r--r--khal/ui/colors.py2
2 files changed, 2 insertions, 1 deletions
diff --git a/AUTHORS.txt b/AUTHORS.txt
index c4e0ce28..c4ad6aec 100644
--- a/AUTHORS.txt
+++ b/AUTHORS.txt
@@ -48,3 +48,4 @@ Robin Schubert
Axel Gschaider - axel.gschaider [at] posteo [dot] de
Anuragh - kpanuragh [at] gmail [dot] com
Henning Ullrich - github {at] henning-ullrich [dot] de
+Jason Cox - me [at] jasoncarloscox [dot] com - https://jasoncarloscox.com
diff --git a/khal/ui/colors.py b/khal/ui/colors.py
index 3ed45f57..dcd91659 100644
--- a/khal/ui/colors.py
+++ b/khal/ui/colors.py
@@ -69,7 +69,7 @@ light = [
('reveal focus', 'black', 'dark cyan', 'standout'),
('today focus', 'white', 'dark cyan', 'standout'),
- ('today', 'black', 'light gray', 'dark cyan'),
+ ('today', 'black', 'light gray'),
('date header', '', 'white'),
('date header focused', 'white', 'dark gray', ('bold', 'standout')),