From 4decfd0896fe2caa9fbb1e46d33e5465c9b50eb7 Mon Sep 17 00:00:00 2001 From: Evie Litherland-Smith Date: Sat, 8 Jun 2024 07:13:55 +0100 Subject: [PATCH] Switch to one-light theme --- init.el | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/init.el b/init.el index 2f8a6f7..c102256 100644 --- a/init.el +++ b/init.el @@ -234,7 +234,7 @@ (use-package base16-theme :demand - :defines (base16-catppuccin-latte-theme-colors + :defines (base16-one-light-theme-colors my/load-theme-and-configure) :hook (server-after-make-frame . my/load-theme-and-configure) :custom @@ -243,7 +243,7 @@ :init (defun my/load-theme-and-configure () "Load theme and configure some faces." - (load-theme 'base16-catppuccin-latte t) + (load-theme 'base16-one-light t) ;; Change outline headers to follow rainbow order (require 'outline) @@ -257,7 +257,7 @@ (outline-8 . :base0F))) (set-face-attribute (car pairing) nil :foreground - (plist-get base16-catppuccin-latte-theme-colors (cdr pairing))))) + (plist-get base16-one-light-theme-colors (cdr pairing))))) :config (if (display-graphic-p) (my/load-theme-and-configure)))