diff options
Diffstat (limited to '.config/emacs/modules/bd--themes.el')
-rw-r--r-- | .config/emacs/modules/bd--themes.el | 35 |
1 files changed, 17 insertions, 18 deletions
diff --git a/.config/emacs/modules/bd--themes.el b/.config/emacs/modules/bd--themes.el index 4ebe1b0..84924de 100644 --- a/.config/emacs/modules/bd--themes.el +++ b/.config/emacs/modules/bd--themes.el @@ -38,32 +38,31 @@ to.") :custom (modus-themes-mixed-fonts t) (modus-themes-italic-constructs t) - (modus-themes-tabs-accented nil) (modus-themes-bold-constructs t) - (modus-themes-subtle-line-numbers t) (modus-themes-variable-pitch-ui nil) - (modus-themes-mode-line '(borderless accented)) - (modus-themes-org-blocks 'grayscale) (modus-themes-markup '(background intense)) (modus-themes-region '(bg-only)) (modus-themes-syntax 'alt-syntax) (modus-themes-headings - '((0 rainbow variable-pitch bold 1.5) - (1 rainbow variable-pitch bold 1.4) - (2 rainbow variable-pitch regular 1.3) - (3 rainbow variable-pitch regular 1.1) - (t rainbow variable-pitch regular 1.0))) + '((0 variable-pitch bold 1.5) + (1 variable-pitch bold 1.4) + (2 variable-pitch regular 1.3) + (3 variable-pitch regular 1.1) + (t variable-pitch regular 1.0))) - (modus-themes-vivendi-color-overrides - (mapcar (lambda (x) - (cons (car x) (alist-get (cdr x) modus-themes-vivendi-colors))) - '((bg-dim . bg-main) - (bg-active . bg-main) - (bg-tab-inactive-alt-accent . bg-main) - (bg-tab-active . bg-active-accent) - (bg-tab-inactive . bg-inactive))))) + (modus-themes-common-palette-overrides + '((bg-mode-line-active bg-blue-nuanced) + (border-mode-line-active bg-main) + (border-mode-line-inactive bg-main) + (bg-line-number-active bg-dim) + (bg-line-number-inactive bg-dim) + (fg-heading-1 fg-term-blue-bright) + (fg-heading-2 fg-term-magenta-bright) + (bg-tab-bar bg-main) + (bg-tab-current bg-blue-nuanced) + (bg-tab-other bg-mode-line-inactive)))) -(load-theme 'modus-vivendi :no-confirm) +(load-theme 'modus-vivendi-tinted :no-confirm) (run-hooks 'modus-themes-post-load-hook) |