From 255fc1bdf3f054c878a2e87e38745d1ea1c1fa40 Mon Sep 17 00:00:00 2001 From: BardofSprites <89086143+BardofSprites@users.noreply.github.com> Date: Thu, 17 Jul 2025 10:17:25 -0400 Subject: standard theme --- bard-emacs-modules/bard-emacs-theme.el | 24 +++++++++++++++++++++++- 1 file changed, 23 insertions(+), 1 deletion(-) diff --git a/bard-emacs-modules/bard-emacs-theme.el b/bard-emacs-modules/bard-emacs-theme.el index 8520723..d56ee78 100644 --- a/bard-emacs-modules/bard-emacs-theme.el +++ b/bard-emacs-modules/bard-emacs-theme.el @@ -155,7 +155,29 @@ The exact color values are taken from the active Modus theme." (use-package rainbow-mode :ensure t) -(global-set-key (kbd "") #'bard/select-theme) +(global-set-key (kbd "M-") #'bard/select-theme) + +(use-package standard-themes + :ensure t + ;; :init (standard-themes-select 'standard-light) + :config + (setq standard-themes-to-toggle '(standard-light + standard-dark)) + (add-hook 'standard-themes-post-load-hook #'logos-update-fringe-in-buffers) + + ;; headings + (setq standard-themes-headings + '((0 . (variable-pitch light 1.5)) + (1 . (variable-pitch light 1.3)) + (2 . (variable-pitch regular 1.2)) + (agenda-date . (semilight 1.4)) + (agenda-structure . (variable-pitch light 1.5)) + (t . (variable-pitch 1.1)))) + + (setq standard-themes-mixed-fonts t) + + :bind + ("" . standard-themes-toggle)) (provide 'bard-emacs-theme) -- cgit v1.2.3