summaryrefslogtreecommitdiffhomepage
path: root/themes
diff options
context:
space:
mode:
authorJose Antonio Ortega Ruiz <jao@imladris.local>2016-10-17 03:02:42 +0200
committerJose Antonio Ortega Ruiz <jao@imladris.local>2016-10-17 03:02:42 +0200
commitdcae50268201cc29033f13428af6261d0a5aca33 (patch)
tree4c853d49e37859005a9e2a307feb154763cbf7ac /themes
parent43c43ab273f9426bebbeb1f0aa880d6992f09b14 (diff)
downloadelibs-dcae50268201cc29033f13428af6261d0a5aca33.tar.gz
elibs-dcae50268201cc29033f13428af6261d0a5aca33.tar.bz2
themes: zenburn with tweaks
Diffstat (limited to 'themes')
-rw-r--r--themes/jao-zenburn-theme.el33
1 files changed, 33 insertions, 0 deletions
diff --git a/themes/jao-zenburn-theme.el b/themes/jao-zenburn-theme.el
new file mode 100644
index 0000000..f10b80c
--- /dev/null
+++ b/themes/jao-zenburn-theme.el
@@ -0,0 +1,33 @@
+(require 'zenburn-theme)
+(require 'jao-themes)
+
+(load-theme 'zenburn t)
+
+(zenburn-with-color-variables
+ (let ((f (jao-themes-parse-faces
+ `(
+ (circe-originator-face (c ,zenburn-yellow-1))
+ (diff-hl-change (c nil ,zenburn-blue-4))
+ (diff-hl-delete (c nil ,zenburn-red-1))
+ (diff-hl-insert (c nil ,zenburn-green))
+ (fringe (c nil nil))
+ (gnus-summary-cancelled (c ,zenburn-red) st)
+ (link (c ,zenburn-yellow) nbf nul)
+ (link-visited (c ,zenburn-yellow-2) nbf nul)
+ (lui-button-face (c ,zenburn-green+2))
+ (lui-time-stamp-face (c ,zenburn-bg+3))
+ (mode-line (c ,zenburn-fg ,zenburn-bg-1))
+ (mode-line-inactive (c ,zenburn-fg ,zenburn-bg+1))
+ (vertical-border (c ,zenburn-bg+2))
+ (w3m-anchor (~ link))
+ (w3m-arrived-anchor (~ visited-link))
+ (w3m-header-line-location-content (c ,zenburn-yellow))
+ (w3m-header-line-location-title nil)
+ (w3m-tab-background (~ mode-line))
+ (w3m-tab-selected (c ,zenburn-red+1 ,zenburn-bg))
+ (w3m-tab-unselected (c ,zenburn-fg "grey30") bx nil)
+ (w3m-tab-unselected-unseen (~ w3m-tab-unselected))
+ ))))
+ (apply 'custom-theme-set-faces (cons 'zenburn f))))
+
+(provide 'jao-zenburn-theme)