Skip to content

Commit

Permalink
Make some smart-mode-line info visible in light theme (#137)
Browse files Browse the repository at this point in the history
The current color for the sml/global face (used for rendering e.g.
column indicator, minor mode names) was gruvbox-burlywood4. This color
doesn't invert and it's invisible in a focused window when using the
light hard variant.

This fixes this by using gruvbox-light4, which will invert correctly
and display properly in light themes.
  • Loading branch information
kaofelix authored and jasonm23 committed Apr 7, 2019
1 parent be411a0 commit f05bfb9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gruvbox.el
Original file line number Diff line number Diff line change
Expand Up @@ -374,7 +374,7 @@ Should contain 2 %s constructs to allow for theme name and directory/prefix")
(elfeed-search-filter-face (:inherit 'font-lock-string-face))

;; smart-mode-line
(sml/global (:foreground gruvbox-burlywood4 :inverse-video nil))
(sml/global (:foreground gruvbox-light4 :inverse-video nil))
(sml/modes (:foreground gruvbox-bright_green))
(sml/filename (:foreground gruvbox-bright_red :weight 'bold))
(sml/prefix (:foreground gruvbox-light1))
Expand Down

0 comments on commit f05bfb9

Please sign in to comment.