diff options
author | bd <bdunahu@colostate.edu> | 2024-03-30 01:26:31 -0600 |
---|---|---|
committer | bd <bdunahu@colostate.edu> | 2024-03-30 01:26:31 -0600 |
commit | cf63c4329492097e922c335a615387ca90518c8e (patch) | |
tree | b79eeb18fce4a3394d9f6ff8651c6f3cdb489234 | |
parent | 1f46130f387fba586e8341eab417b59427b20bff (diff) |
Small modifications to themes
-rw-r--r-- | .config/emacs/modules/bd--themes.el | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/.config/emacs/modules/bd--themes.el b/.config/emacs/modules/bd--themes.el index 0a79d2b..aa07768 100644 --- a/.config/emacs/modules/bd--themes.el +++ b/.config/emacs/modules/bd--themes.el @@ -29,7 +29,7 @@ to.") (mapc #'disable-theme custom-enabled-themes) :custom (ef-themes-mixed-fonts t) - (ef-themes-variable-pitch-ui t) + (ef-themes-variable-pitch-ui nil) (ef-themes-headings '((0 variable-pitch bold 1.6) (1 variable-pitch bold 1.5) @@ -37,14 +37,18 @@ to.") (3 variable-pitch regular 1.2) (t variable-pitch regular 1.0))) - (ef-themes-to-toggle '(ef-winter ef-summer)) + (ef-themes-to-toggle '(ef-autumn ef-frost)) (ef-themes-common-palette-overrides '((bg-mode-line bg-main) (fg-mode-line fg-main) (bg-alt bg-main))) (ef-winter-palette-overrides + '((bg-main "#000000"))) + (ef-bio-palette-overrides + '((bg-main "#000000"))) + (ef-autumn-palette-overrides '((bg-main "#000000")))) -(load-theme 'ef-dark :no-confirm) +(load-theme 'ef-autumn :no-confirm) (provide 'bd--themes) |