branch: elpa/gruvbox-theme commit 9b0526be614190cfc78d06024b2254802fbc706d Author: Shahab Shahsavari Alavidjeh <shahab.shahsav...@outlook.com> Commit: Jason Milkins <jason...@users.noreply.github.com>
Adding ace-jump and ace-window specific faces (#50) * Adding ace-jump and ace-window specific faces ace-jump-mode is one of the frequently used packages to jump to a head character in current buffer, though it's being replaced by newer avy-mode, but it still is being used widely https://github.com/winterTTr/ace-jump-mode ace-window is a package for selecting a window to switch to, a bright orange foreground in a box with height ratio of 4 is used to indicate window numbers in ace-window mode https://github.com/abo-abo/ace-window * Specify box color for aw-leading-char-face * Minor change --- gruvbox-theme.el | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/gruvbox-theme.el b/gruvbox-theme.el index b2e03aab4d..b80029768a 100644 --- a/gruvbox-theme.el +++ b/gruvbox-theme.el @@ -374,6 +374,14 @@ `(anzu-replace-to ((t (:foreground ,gruvbox-bright_yellow)))) `(anzu-replace-highlight ((t (:inherit isearch)))) + ;; Ace-jump-mode + `(ace-jump-face-background ((t (:foreground ,gruvbox-light4 :background ,gruvbox-bg :inverse-video nil)))) + `(ace-jump-face-foreground ((t (:foreground ,gruvbox-bright_red :background ,gruvbox-bg :inverse-video nil :box 1)))) + + ;; Ace-window + `(aw-background-face ((t (:forground ,gruvbox-light1 :background ,gruvbox-bg :inverse-video nil)))) + `(aw-leading-char-face ((t (:foreground ,gruvbox-bright_orange :background ,gruvbox-bg :height 4.0 :box (:line-width 1 :color ,gruvbox-bright_orange))))) + ;; show-paren `(show-paren-match ((t (:background ,gruvbox-dark3 :weight bold)))) `(show-paren-mismatch ((t (:background ,gruvbox-bright_red :foreground ,gruvbox-dark3 :weight bold))))