summaryrefslogtreecommitdiffhomepage
path: root/themes/jao-doom-theme.el
blob: f215fa3024c19101b00db5a194f00b6eb7886f0d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
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)