From 1a0b078fadc5686fd5f0f8ef837b3fa29e72feea Mon Sep 17 00:00:00 2001 From: Christian Cunningham Date: Thu, 20 Jun 2024 14:10:36 -0700 Subject: Create Dark Mode --- elchemy-personal.el | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'elchemy-personal.el') diff --git a/elchemy-personal.el b/elchemy-personal.el index a945041..6a74800 100644 --- a/elchemy-personal.el +++ b/elchemy-personal.el @@ -41,13 +41,13 @@ (elchemy/create-dashboard)) ;; Face Color Customizations -(add-hook 'minibuffer-setup-hook - (lambda () - (make-local-variable 'face-remapping-alist) - (add-to-list 'face-remapping-alist '(default (:background "gray90"))))) -(custom-set-faces - '(mode-line ((t (:background "grey95" :foreground "gray20")))) - '(org-document-info-keyword ((t (:foreground "gray100" :height 0.1))))) - +(unless elchemy/user/dark-theme + (add-hook 'minibuffer-setup-hook + (lambda () + (make-local-variable 'face-remapping-alist) + (add-to-list 'face-remapping-alist '(default (:background "gray90"))))) + (custom-set-faces + '(mode-line ((t (:background "grey95" :foreground "gray20")))) + '(org-document-info-keyword ((t (:foreground "gray100" :height 0.1)))))) (provide 'elchemy-personal) -- cgit v1.2.1