From 4d3de5def2a73d3b1f727511118f5205d6227138 Mon Sep 17 00:00:00 2001 From: Jim Myhrberg Date: Thu, 22 Sep 2022 14:25:10 +0100 Subject: [PATCH] feat(theme): change default light theme to doom-solarized-light --- modules/themes/siren-doom-themes.el | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/modules/themes/siren-doom-themes.el b/modules/themes/siren-doom-themes.el index d9ea1cb..9b1b7d5 100644 --- a/modules/themes/siren-doom-themes.el +++ b/modules/themes/siren-doom-themes.el @@ -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)))