branch: elpa/gruvbox-theme commit 061bad7cbb939540a559b412b1cf2df25b45cbff Author: martijnat <bigmart...@gmail.com> Commit: Jason Milkins <jason...@users.noreply.github.com>
Added missed faces for flyspell and customize (#90) * Added faces for flyspell * Added faces used in M-x customize * Updated flyspell faces to be less intrusive Now the themed faces change the weight and underline instead of the foreground prevent most conflicts with other faces * Removed bold weight from flyspell-duplicate Underline color does not work in terminal emacs, this way you cann tell the difference between the incorrect and duplicated word. * unbolded flyspell-incorrect face --- gruvbox.el | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/gruvbox.el b/gruvbox.el index 5a0ce80df9..953fdff3ce 100644 --- a/gruvbox.el +++ b/gruvbox.el @@ -120,6 +120,11 @@ Should contain 2 %s constructs to allow for theme name and directory/prefix") (homoglyph (:foreground gruvbox-bright_yellow)) (match (:foreground gruvbox-dark0 :background gruvbox-neutral_blue)) + ;; Customize faces + (widget-field (:background gruvbox-dark3)) + (custom-group-tag (:foreground gruvbox-neutral_blue :weight 'bold)) + (custom-variable-tag (:foreground gruvbox-neutral_blue :weight 'bold)) + ;; whitespace-mode (whitespace-space (:background gruvbox-bg :foreground gruvbox-dark4)) @@ -457,6 +462,10 @@ Should contain 2 %s constructs to allow for theme name and directory/prefix") (magit-signature-untrusted (:foreground gruvbox-bright_blue)) (magit-tag (:foreground gruvbox-bright_yellow)) + ;; Flyspell + (flyspell-duplicate (:underline (:color gruvbox-light4 :style 'line))) + (flyspell-incorrect (:underline (:color gruvbox-bright_red :style 'line))) + ;; mu4e (mu4e-header-key-face (:foreground gruvbox-bright_green :weight 'bold )) (mu4e-unread-face (:foreground gruvbox-bright_blue :weight 'bold ))