From a178f79eba1fcef21f97f772e085b9e1c31603c7 Mon Sep 17 00:00:00 2001 From: Dimitri Lozeve Date: Mon, 8 Jul 2024 08:39:47 +0200 Subject: [PATCH] Change themes --- init.el | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/init.el b/init.el index 92f0174..d337004 100644 --- a/init.el +++ b/init.el @@ -143,16 +143,16 @@ :straight t :init (setq ef-themes-mixed-fonts t) - (setq ef-themes-to-toggle '(ef-day ef-night)) + (setq ef-themes-to-toggle '(ef-light ef-dark)) (mapc #'disable-theme custom-enabled-themes) - (load-theme 'ef-night :no-confirm) + (load-theme 'ef-dark :no-confirm) (when (eq window-system 'ns) (defun dl/themes-toggle-with-system (appearance) "Load dark or light theme depending on system appearance on macOS." (mapc #'disable-theme custom-enabled-themes) (pcase appearance - ('light (load-theme 'ef-day :no-confirm)) - ('dark (load-theme 'ef-night :no-confirm)))) + ('light (load-theme 'ef-light :no-confirm)) + ('dark (load-theme 'ef-dark :no-confirm)))) (add-hook 'ns-system-appearance-change-functions #'dl/themes-toggle-with-system)) :bind ("" . ef-themes-toggle))