diff options
author | Franck Cuny <franck.cuny@gmail.com> | 2017-02-27 09:42:48 -0800 |
---|---|---|
committer | Franck Cuny <franck.cuny@gmail.com> | 2017-02-27 09:42:48 -0800 |
commit | ad1d186ee601a7cf90e6d9b9971dc7e23e822c80 (patch) | |
tree | a67368b617f0a646304a3da2ae080081ea669cab | |
parent | [README] up (diff) | |
download | emacs.d-ad1d186ee601a7cf90e6d9b9971dc7e23e822c80.tar.gz |
[Emacs] Use different color for highlight and region.
-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))) |