summaryrefslogtreecommitdiffhomepage
path: root/themes
diff options
context:
space:
mode:
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)