Skip to content

Commit

Permalink
themes: Add heading-style for gruvbox and zt_blue themes. Fixes zulip…
Browse files Browse the repository at this point in the history
…#1095

This commit along with ed3227b and 22a17fb implement heading-styles for all the themes.
h1 to h6 styles have the same implementation of 'msg_heading' in the respective themes as of now.
  • Loading branch information
mounilKshah committed Dec 31, 2021
1 parent ed3227b commit 25fbdc0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions zulipterminal/themes/gruvbox.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,7 @@ class GruvBoxColor(Enum):
'msg_emoji' : (Color.NEUTRAL_PURPLE, Color.DARK0_HARD),
'reaction' : (Color.NEUTRAL_PURPLE__BOLD, Color.DARK0_HARD),
'reaction_mine' : (Color.DARK0_HARD, Color.NEUTRAL_PURPLE),
'msg_heading' : (Color.DARK0_HARD__BOLD, Color.BRIGHT_GREEN),
'msg_math' : (Color.DARK0_HARD, Color.GRAY_244),
'msg_mention' : (Color.BRIGHT_RED__BOLD, Color.DARK0_HARD),
'msg_link' : (Color.BRIGHT_BLUE, Color.DARK0_HARD),
Expand Down
1 change: 1 addition & 0 deletions zulipterminal/themes/zt_blue.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@
'msg_emoji' : (Color.DARK_MAGENTA, Color.LIGHT_BLUE),
'reaction' : (Color.DARK_MAGENTA__BOLD, Color.LIGHT_BLUE),
'reaction_mine' : (Color.LIGHT_BLUE, Color.DARK_MAGENTA),
'msg_heading' : (Color.WHITE__BOLD, Color.BLACK),
'msg_math' : (Color.LIGHT_GRAY, Color.DARK_GRAY),
'msg_mention' : (Color.LIGHT_RED__BOLD, Color.LIGHT_BLUE),
'msg_link' : (Color.DARK_BLUE, Color.LIGHT_GRAY),
Expand Down

0 comments on commit 25fbdc0

Please sign in to comment.