summaryrefslogtreecommitdiffhomepage
path: root/themes
diff options
context:
space:
mode:
authorjao <jao@gnu.org>2019-12-14 19:52:38 +0000
committerjao <jao@gnu.org>2019-12-14 19:52:38 +0000
commitbc603d45a0e5e9983f15675f344cf78790214edb (patch)
tree5ab9005e042c582abac4c5eef4274db388a00d55 /themes
parentdae71eb8d5d9bdc11958a0ff3f688b05b29b4608 (diff)
downloadelibs-bc603d45a0e5e9983f15675f344cf78790214edb.tar.gz
elibs-bc603d45a0e5e9983f15675f344cf78790214edb.tar.bz2
tweaks for the doom themes (notably, doom-wilmersdorf)
Diffstat (limited to 'themes')
-rw-r--r--themes/jao-doom-theme.el32
1 files changed, 32 insertions, 0 deletions
diff --git a/themes/jao-doom-theme.el b/themes/jao-doom-theme.el
new file mode 100644
index 0000000..f215fa3
--- /dev/null
+++ b/themes/jao-doom-theme.el
@@ -0,0 +1,32 @@
+(deftheme jao-doom
+ "Created 2019-12-13.")
+
+(defun jao-doom-color (c) (cadr (assoc c doom-themes--colors)))
+(defun jao-doom-face (f) (cadr (assoc f doom-themes--faces)))
+
+(custom-theme-set-faces
+ 'jao-doom
+ '(Info-quoted ((t (:inherit font-lock-variable-name-face))))
+ '(custom-button ((t (:background "#282b33" :foreground "#819cd6" :box nil))))
+ '(dictionary-reference-face ((t (:inherit (font-lock-keyword-face)))))
+ '(dictionary-word-definition-face ((t (:inherit default))))
+ '(error ((t (:foreground "tan2"))))
+ '(diff-hl-change ((t (:inherit default :background "#313133"))))
+ '(diff-hl-delete ((t (:inherit default :background "#513133"))))
+ '(diff-hl-insert ((t (:inherit default :background "#313351"))))
+ '(fill-column-indicator ((t (:foreground "grey25"))))
+ '(lui-button-face ((t (:foreground "#7ebebd" :underline nil))))
+ '(magit-diff-context-highlight ((t (:background "#333344"))))
+ '(magit-diff-removed-highlight ((t (:foreground "tan2"))))
+ '(mpdel-tablist-album-face ((t (:inherit font-lock-doc-face))))
+ '(mpdel-tablist-artist-face ((t (:inherit (font-lock-keyword-face)))))
+ `(scroll-bar ((t (:background ,(jao-doom-color 'modeline-bg)
+ :foreground ,(jao-doom-color 'modeline-bg-l)))))
+ '(variable-pitch ((t (:inherit default))))
+ '(w3m-form-button ((t (:inherit button)))))
+
+(custom-theme-set-variables
+ 'jao-doom
+ '(fci-rule-color "grey25"))
+
+(provide-theme 'jao-doom)