Files
.emacs.d/core/siren-core-themes.el
Jim Myhrberg 5f4aa98abd feat(theme): improve doom-themes overrides by using a proper theme
Instead of manually just setting faces after loading a doom-themes
theme, let's use a custom override theme which we apply right after
applying any doom-themes theme.

The override theme uses various doom-color helpers, so the colors it
uses will be based on the most recently applied doom-themes theme.
2021-04-07 23:50:11 +01:00

15 lines
362 B
EmacsLisp

;;; siren-core-themes.el --- jimeh's Emacs Siren: Custom themes.
;;; Commentary:
;; Enable loading custom themes.
;;; Code:
(defvar siren-themes-dir (expand-file-name "themes" siren-dir)
"Root directory for Emacs Siren custom themes.")
(add-to-list 'custom-theme-load-path siren-themes-dir)
(provide 'siren-core-themes)
;;; siren-core-themes.el ends here