diff options
-rw-r--r-- | emacs.d/lib/wabi-sabi-theme.el | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/emacs.d/lib/wabi-sabi-theme.el b/emacs.d/lib/wabi-sabi-theme.el index 1f424c7..d1f40f0 100644 --- a/emacs.d/lib/wabi-sabi-theme.el +++ b/emacs.d/lib/wabi-sabi-theme.el @@ -30,7 +30,8 @@ (highlight-alt "#909C87") (modeline-fg "#ffffff") (modeline-bg "#2D271F") - (modeline-bg-alt "#605C49")) + (modeline-bg-alt "#605C49") + (region "#eeed9d")) (apply 'custom-theme-set-faces 'wabi-sabi `(default ((t (:foreground ,fg :background ,bg)))) @@ -48,7 +49,7 @@ `(font-lock-doc-face ((t (:foreground ,fg :weight bold)))) `(font-lock-doc-string-face ((t (:foreground ,fg :weight bold)))) - `(region ((t (:background ,highlight :foreground ,fg)))) + `(region ((t (:background ,region :foreground ,fg)))) (mapcar (lambda (n) `(,n ((t (:background ,bg :foreground ,fg))))) wabi-sabi-faces))) |