Skip to content

Commit

Permalink
Fixes zulip#437, themes: Added new style to color '(you)' displayed b…
Browse files Browse the repository at this point in the history
…eside logged-in-user in user list
  • Loading branch information
Astronag committed Sep 25, 2020
1 parent 27a09ec commit 2f5ebb3
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions zulipterminal/config/themes.py
Expand Up @@ -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',
Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -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'),
Expand Down Expand Up @@ -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'),
Expand Down Expand Up @@ -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]

Expand Down

0 comments on commit 2f5ebb3

Please sign in to comment.