From 2f5ebb31dec09b89bb289eb31a25611019e93ac6 Mon Sep 17 00:00:00 2001 From: Astronag Date: Fri, 25 Sep 2020 10:26:06 +0530 Subject: [PATCH] Fixes #437, themes: Added new style to color '(you)' displayed beside logged-in-user in user list --- zulipterminal/config/themes.py | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/zulipterminal/config/themes.py b/zulipterminal/config/themes.py index 6846cc34cc9..22e5d3e0130 100644 --- a/zulipterminal/config/themes.py +++ b/zulipterminal/config/themes.py @@ -53,6 +53,7 @@ dark_blue='#24a', dark_cyan='#088', dark_gray='#666', + light_gray='#ccc', light_red='#f00', light_green='#0f0', dark_green='#080', @@ -166,6 +167,8 @@ None, DEF['yellow'], DEF['black']), ('edit_time', 'light blue', 'black', None, DEF['light_blue'], DEF['black']), + ('current_user', 'white', 'black', + None, DEF['white'], DEF['black']), ], 'gruvbox_dark': [ # default colorscheme on 16 colors, gruvbox colorscheme @@ -242,6 +245,8 @@ None, YELLOW, BLACK), ('edit_time', 'light blue', 'black', None, LIGHTBLUE, BLACK), + ('current_user', 'white', 'black', + None, WHITE, BLACK), ], 'zt_light': [ (None, 'black', 'white'), @@ -280,6 +285,7 @@ ('edit_tag', 'white', 'dark gray'), ('edit_author', 'dark green', 'white'), ('edit_time', 'dark blue', 'white'), + ('current_user', 'dark gray', 'white'), ], 'zt_blue': [ (None, 'black', 'light blue'), @@ -318,6 +324,7 @@ ('edit_tag', 'white', 'dark blue'), ('edit_author', 'dark gray', 'light blue'), ('edit_time', 'dark blue', 'light blue'), + ('current_user', 'light gray', 'light blue'), ] } # type: Dict[str, ThemeSpec]