Make light and dark themes customizable

This commit is contained in:
Jeremy Dormitzer 2024-04-02 15:03:52 -06:00
parent 3ad9aaffef
commit 20a3d96799

View File

@ -1,7 +1,16 @@
;; -*- lexical-binding: t; -*-
(defvar my-light-theme 'doom-solarized-light)
(defvar my-dark-theme 'doom-solarized-dark)
(defcustom my-light-theme 'doom-solarized-light
"My light theme."
:type 'symbol
:group 'personal
:options (custom-available-themes))
(defcustom my-dark-theme 'doom-solarized-dark
"My dark theme."
:type 'symbol
:group 'personal
:options (custom-available-themes))
(defun mac-appearance () (plist-get (mac-application-state) :appearance))