diff options
author | Franck Cuny <franck@fcuny.net> | 2021-10-25 12:05:23 -0700 |
---|---|---|
committer | Franck Cuny <franck@fcuny.net> | 2021-10-25 12:05:23 -0700 |
commit | 1458137fe2f3143a3f2368db9d44f2207c6ee627 (patch) | |
tree | ed55f45be3e1dd986c6c415ff31c209e55da0840 | |
parent | emacs: navigation related changes (diff) | |
download | emacs.d-1458137fe2f3143a3f2368db9d44f2207c6ee627.tar.gz |
emacs: override the background for the theme
Diffstat (limited to '')
-rw-r--r-- | emacs/custom/fcuny-ui.el | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/emacs/custom/fcuny-ui.el b/emacs/custom/fcuny-ui.el index cbc58f1..9827c5e 100644 --- a/emacs/custom/fcuny-ui.el +++ b/emacs/custom/fcuny-ui.el @@ -49,12 +49,13 @@ ;; Load the theme files before enabling a theme (else you get an error). (modus-themes-load-themes) :config + (setq modus-themes-operandi-color-overrides + '((bg-main . "#fffff8"))) (modus-themes-load-operandi)) (use-package frame :config (blink-cursor-mode -1) - (set-background-color "#FFFFF8") (setq frame-title-format '("%b@" (:eval (or (file-remote-p default-directory 'host) system-name)))) (when (memq window-system '(mac ns)) (set-frame-font "Source Code Pro-14") |