branch: elpa/gruvbox-theme commit fe9954d5eea8a4dda840eb8f7ae14cc2748a447f Author: Greduan <eduanlava...@gmail.com> Commit: Greduan <eduanlava...@gmail.com>
Added Smartparens support And I did some small changes to other stuff. --- README.md | 3 ++- gruvbox-theme.el | 14 +++++++++++--- 2 files changed, 13 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index bd34814be7..e314fd45d1 100644 --- a/README.md +++ b/README.md @@ -11,6 +11,7 @@ This theme contains custom support for the following features and plugins: - `whitespace-mode` - [RainbowDelimiters](http://www.emacswiki.org/emacs/RainbowDelimiters) +- [Smartparens](https://github.com/Fuco1/smartparens) ## Installation and usage @@ -42,7 +43,7 @@ None. For now... Add support for: -- [ElScreen](https://github.com/knu/elscreen). +- [ElScreen](https://github.com/knu/elscreen) If you want for the theme to support something please open a new issue and I'll try my best to make it work out. :smile: diff --git a/gruvbox-theme.el b/gruvbox-theme.el index 7082e1d1f1..b92921d110 100644 --- a/gruvbox-theme.el +++ b/gruvbox-theme.el @@ -4,7 +4,7 @@ ;; Author: Eduán Lávaque <eduanlava...@gmail.com> ;; URL: http://github.com/Greduan/emacs-theme-gruvbox -;; Version: 0.5.1 +;; Version: 0.6 ;;; Commentary: @@ -78,7 +78,7 @@ ;;ui `(default ((t (:background ,gruvbox-dark-0 :foreground ,gruvbox-light-0)))) `(cursor ((t (:background ,gruvbox-light-2)))) - `(hl-line ((t (:background ,gruvbox-dark-3)))) + `(hl-line ((t (:background ,gruvbox-dark-1)))) `(mode-line-inactive ((t (:box nil :background ,gruvbox-dark-2 :foreground ,gruvbox-dark-0)))) `(mode-line ((t (:box nil :background ,gruvbox-dark-2 :foreground ,gruvbox-light-0)))) `(fringe ((t (:background ,gruvbox-dark-0)))) @@ -124,9 +124,17 @@ `(rainbow-delimiters-depth-10-face ((t (:foreground "#b16286")))) `(rainbow-delimiters-depth-11-face ((t (:foreground "#cc241d")))) `(rainbow-delimiters-depth-12-face ((t (:foreground "#d65d0e")))) + `(rainbow-delimiters-unmatched-face ((t (:background nil :foreground ,gruvbox-light-0)))) ;;linum-relative - `(linum-relative-current-face ((t (:background ,gruvbox-dark-1 :foreground ,gruvbox-light-0)))) + `(linum-relative-current-face ((t (:background ,gruvbox-dark-1 :foreground ,gruvbox-light-4)))) + + ;;Smartparens + `(sp-pair-overlay-face ((t (:background ,gruvbox-dark-2)))) + ;`(sp-wrap-overlay-face ((t (:inherit sp-wrap-overlay-face)))) + ;`(sp-wrap-tag-overlay-face ((t (:inherit sp-wrap-overlay-face)))) + `(sp-show-pair-match-face ((t (:background ,gruvbox-light-2)))) ;;pair tags highlight + `(sp-show-pair-mismatch-face ((t (:background "red")))) ;;highlight for bracket without pair ;;;elscreen ;`(elscreen-tab-background-face ((t (:background ,gruvbox-dark-0 :foreground ,gruvbox-light-0))))