From bc603d45a0e5e9983f15675f344cf78790214edb Mon Sep 17 00:00:00 2001 From: jao Date: Sat, 14 Dec 2019 19:52:38 +0000 Subject: tweaks for the doom themes (notably, doom-wilmersdorf) --- themes/jao-doom-theme.el | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 themes/jao-doom-theme.el (limited to 'themes') 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) -- cgit v1.2.3