feat(theme): change default light theme to doom-solarized-light

This commit is contained in:
2022-09-22 14:25:10 +01:00
parent 5de69dcc60
commit 4d3de5def2

View File

@@ -59,7 +59,7 @@ if running Emacs in a terminal."
"siren-doom-themes customizations."
:group 'doom-themes)
(defcustom siren-doom-themes-light-theme 'doom-nord-light
(defcustom siren-doom-themes-light-theme 'doom-solarized-light
"The theme to apply when system appearance is light."
:type '(symbol)
:group 'siren-doom-themes)
@@ -115,6 +115,11 @@ already loaded, otherwise re-apply the theme and siren-overrides."
(siren-doom-themes-load 'doom-nord-light))
(defalias 'nord-light 'siren-doom-themes-nord-light-theme)
(defun siren-doom-themes-solarized-light-theme ()
(interactive)
(siren-doom-themes-load 'doom-solarized-light))
(defalias 'solarized-light 'siren-doom-themes-solarized-light-theme)
(defun siren-doom-themes-list ()
(seq-filter
(lambda (n) (string-prefix-p "doom-" (symbol-name n)))