diff options
| author | bard <[email protected]> | 2024-03-26 17:58:11 -0400 |
|---|---|---|
| committer | bard <[email protected]> | 2024-03-26 17:58:11 -0400 |
| commit | 23bfe1a260de4f71e8718b0eef9e20c1bd9dcacf (patch) | |
| tree | 40cc18b93e3b9db318865cc785b2b445f2cdf796 | |
| parent | fc53a32e12490538a1509a4a6f9bd42337ba1750 (diff) | |
palette overrides and keybinds
| -rw-r--r-- | bard-emacs-modules/bard-emacs-theme.el | 14 |
1 files changed, 12 insertions, 2 deletions
diff --git a/bard-emacs-modules/bard-emacs-theme.el b/bard-emacs-modules/bard-emacs-theme.el index d145802..59b94fc 100644 --- a/bard-emacs-modules/bard-emacs-theme.el +++ b/bard-emacs-modules/bard-emacs-theme.el @@ -67,7 +67,7 @@ The exact color values are taken from the active Ef theme." ("DEPRECATED" . ,yellow))))) (add-hook 'ef-themes-post-load-hook #'bard/ef-themes-hl-todo-faces) - (define-key global-map (kbd "M-<f5>") #'ef-themes-toggle) + (define-key global-map (kbd "M-<f5>") #'ef-themes-select) (setq ef-themes-to-toggle '(ef-winter ef-frost)) (setq ef-themes-mixed-fonts t) ;; (load-theme 'ef-winter) @@ -107,10 +107,20 @@ The exact color values are taken from the active Ef theme." ("KILLED" . ,cyan) ("DEPRECATED" . ,yellow))))) + (setq modus-operandi-palette-overrides + '((bg-mode-line-active bg-blue-intense) + (fg-mode-line-active fg-main) + (border-mode-line-active blue-intense))) + + (setq modus-vivendi-palette-overrides + '((bg-mode-line-active bg-blue-subtle) + (fg-mode-line-active fg-main) + (border-mode-line-active blue))) + (add-hook 'modus-themes-post-load-hook #'bard/modus-themes-hl-todo-faces) (setq modus-themes-to-toggle '(modus-vivendi modus-operandi-tinted)) (setq modus-themes-mixed-fonts t) - (define-key global-map (kbd "<f5>") #'modus-themes-toggle) + (define-key global-map (kbd "<f5>") #'modus-themes-select) (load-theme 'modus-vivendi t)) ;;;; Fonts |
