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)))