summary refs log tree commit diff
path: root/emacs.d/lib
diff options
context:
space:
mode:
authorFranck Cuny <franck.cuny@gmail.com>2017-02-27 09:42:48 -0800
committerFranck Cuny <franck.cuny@gmail.com>2017-02-27 09:42:48 -0800
commitad1d186ee601a7cf90e6d9b9971dc7e23e822c80 (patch)
treea67368b617f0a646304a3da2ae080081ea669cab /emacs.d/lib
parent[README] up (diff)
downloademacs.d-ad1d186ee601a7cf90e6d9b9971dc7e23e822c80.tar.gz
[Emacs] Use different color for highlight and region.
Diffstat (limited to 'emacs.d/lib')
-rw-r--r--emacs.d/lib/wabi-sabi-theme.el5
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)))