branch: elpa/gruvbox-theme commit 26f1b7683ba7968185b8295770f0e778d1ddcb46 Author: Noah Reeder <nree...@gmail.com> Commit: Noah Reeder <nree...@gmail.com>
Add support for helm. --- gruvbox-theme.el | 54 +++++++++++++++++++++++++++++++++++++++++++++++++++++- 1 file changed, 53 insertions(+), 1 deletion(-) diff --git a/gruvbox-theme.el b/gruvbox-theme.el index 5fe6034ecd..177c448452 100644 --- a/gruvbox-theme.el +++ b/gruvbox-theme.el @@ -83,7 +83,15 @@ (gruvbox-delimiter-one (if (display-graphic-p) "#458588" "color-30")) (gruvbox-delimiter-two (if (display-graphic-p) "#b16286" "color-168")) (gruvbox-delimiter-three (if (display-graphic-p) "#8ec07c" "color-108")) - (gruvbox-delimiter-four (if (display-graphic-p) "#d65d0e" "color-166"))) + (gruvbox-delimiter-four (if (display-graphic-p) "#d65d0e" "color-166")) + (gruvbox-white (if (display-graphic-p) "#FFFFFF" "white")) + (gruvbox-black (if (display-graphic-p) "#000000" "black")) + (gruvbox-sienna (if (display-graphic-p) "#DD6F48" "sienna")) + (gruvbox-darkslategray4 (if (display-graphic-p) "#528B8B" "DarkSlateGray4")) + (gruvbox-lightblue4 (if (display-graphic-p) "#66999D" "LightBlue4")) + (gruvbox-burlywood4 (if (display-graphic-p) "#BBAA97" "burlywood4")) + (gruvbox-aquamarine4 (if (display-graphic-p) "#83A598" "aquamarine4")) + (gruvbox-turquoise4 (if (display-graphic-p) "#61ACBB" "turquoise4"))) (custom-theme-set-faces 'gruvbox @@ -184,6 +192,50 @@ `(js2-jsdoc-html-tag-name ((t (:background nil :foreground ,gruvbox-light4 )))) `(js2-jsdoc-html-tag-delimiter ((t (:background nil :foreground ,gruvbox-light3 )))) + ;; helm + `(helm-M-x-key ((t ( :foreground ,gruvbox-neutral_orange )))) + `(helm-action ((t ( :foreground ,gruvbox-white :underline t )))) + `(helm-bookmark-addressbook ((t ( :foreground ,gruvbox-neutral_red )))) + `(helm-bookmark-directory ((t ( :foreground ,gruvbox-bright_purple )))) + `(helm-bookmark-file ((t ( :foreground ,gruvbox-faded_blue )))) + `(helm-bookmark-gnus ((t ( :foreground ,gruvbox-faded_purple )))) + `(helm-bookmark-info ((t ( :foreground ,gruvbox-turquoise4 )))) + `(helm-bookmark-man ((t ( :foreground ,gruvbox-sienna )))) + `(helm-bookmark-w3m ((t ( :foreground ,gruvbox-neutral_yellow )))) + `(helm-buffer-directory ((t ( :foreground ,gruvbox-white :background ,gruvbox-bright_blue )))) + `(helm-buffer-not-saved ((t ( :foreground ,gruvbox-faded_red )))) + `(helm-buffer-process ((t ( :foreground ,gruvbox-burlywood4 )))) + `(helm-buffer-saved-out ((t ( :foreground ,gruvbox-bright_red )))) + `(helm-buffer-size ((t ( :foreground ,gruvbox-bright_purple )))) + `(helm-candidate-number ((t ( :foreground ,gruvbox-neutral_green )))) + `(helm-ff-directory ((t ( :foreground ,gruvbox-neutral_purple )))) + `(helm-ff-executable ((t ( :foreground ,gruvbox-turquoise4 )))) + `(helm-ff-file ((t ( :foreground ,gruvbox-sienna )))) + `(helm-ff-invalid-symlink ((t ( :foreground ,gruvbox-white :background ,gruvbox-bright_red )))) + `(helm-ff-prefix ((t ( :foreground ,gruvbox-black :background ,gruvbox-neutral_yello)))) + `(helm-ff-symlink ((t ( :foreground ,gruvbox-neutral_orange )))) + `(helm-grep-cmd-line ((t ( :foreground ,gruvbox-neutral_green )))) + `(helm-grep-file ((t ( :foreground ,gruvbox-faded_purple )))) + `(helm-grep-finish ((t ( :foreground ,gruvbox-turquoise4 )))) + `(helm-grep-lineno ((t ( :foreground ,gruvbox-neutral_orange )))) + `(helm-grep-match ((t ( :foreground ,gruvbox-neutral_yellow )))) + `(helm-grep-running ((t ( :foreground ,gruvbox-neutral_red )))) + `(helm-header ((t ( :foreground ,gruvbox-aquamarine4 )))) + `(helm-helper ((t ( :foreground ,gruvbox-aquamarine4 )))) + `(helm-history-deleted ((t ( :foreground ,gruvbox-black :background ,gruvbox-bright_red )))) + `(helm-history-remote ((t ( :foreground ,gruvbox-faded_red )))) + `(helm-lisp-completion-info ((t ( :foreground ,gruvbox-faded_orange )))) + `(helm-lisp-show-completion ((t ( :foreground ,gruvbox-bright_red )))) + `(helm-locate-finish ((t ( :foreground ,gruvbox-white :background ,gruvbox-aquamarine4 )))) + `(helm-match ((t ( :foreground ,gruvbox-neutral_orange )))) + `(helm-moccur-buffer ((t ( :foreground ,gruvbox-bright_aqua :underline t )))) + `(helm-prefarg ((t ( :foreground ,gruvbox-turquoise4 )))) + `(helm-selection ((t ( :foreground ,gruvbox-white :background ,gruvbox-dark2 )))) + `(helm-selection-line ((t ( :foreground ,gruvbox-white :background ,gruvbox-dark2 )))) + `(helm-separator ((t ( :foreground ,gruvbox-faded_red )))) + `(helm-source-header ((t ( :foreground ,gruvbox-light2 )))) + `(helm-visible-mark ((t ( :foreground ,gruvbox-black :background ,gruvbox-light3 )))) + ;; Term `(term-color-black ((t (:foreground ,gruvbox-dark1)))) `(term-color-blue ((t (:foreground ,gruvbox-neutral_blue))))