Switch to one-light theme
This commit is contained in:
parent
cacdf85e11
commit
4decfd0896
6
init.el
6
init.el
|
@ -234,7 +234,7 @@
|
||||||
|
|
||||||
(use-package base16-theme
|
(use-package base16-theme
|
||||||
:demand
|
:demand
|
||||||
:defines (base16-catppuccin-latte-theme-colors
|
:defines (base16-one-light-theme-colors
|
||||||
my/load-theme-and-configure)
|
my/load-theme-and-configure)
|
||||||
:hook (server-after-make-frame . my/load-theme-and-configure)
|
:hook (server-after-make-frame . my/load-theme-and-configure)
|
||||||
:custom
|
:custom
|
||||||
|
@ -243,7 +243,7 @@
|
||||||
:init
|
:init
|
||||||
(defun my/load-theme-and-configure ()
|
(defun my/load-theme-and-configure ()
|
||||||
"Load theme and configure some faces."
|
"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
|
;; Change outline headers to follow rainbow order
|
||||||
(require 'outline)
|
(require 'outline)
|
||||||
|
@ -257,7 +257,7 @@
|
||||||
(outline-8 . :base0F)))
|
(outline-8 . :base0F)))
|
||||||
(set-face-attribute (car pairing) nil
|
(set-face-attribute (car pairing) nil
|
||||||
:foreground
|
:foreground
|
||||||
(plist-get base16-catppuccin-latte-theme-colors (cdr pairing)))))
|
(plist-get base16-one-light-theme-colors (cdr pairing)))))
|
||||||
:config
|
:config
|
||||||
(if (display-graphic-p) (my/load-theme-and-configure)))
|
(if (display-graphic-p) (my/load-theme-and-configure)))
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue