diff options
Diffstat (limited to '.config/emacs/modules/bd--themes.el')
-rw-r--r-- | .config/emacs/modules/bd--themes.el | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/.config/emacs/modules/bd--themes.el b/.config/emacs/modules/bd--themes.el index abf9887..9321e15 100644 --- a/.config/emacs/modules/bd--themes.el +++ b/.config/emacs/modules/bd--themes.el @@ -1,16 +1,20 @@ ;; -*- lexical-binding: t; -*- +;; no fringe +(fringe-mode '(0 . 0)) + (defun modus-themes-custom-faces () (modus-themes-with-colors (custom-set-faces - `(vertical-border ((,class :background ,bg-main - :foreground ,bg-main))) + `(vertical-border ((,class :foreground ,bg-inactive))) `(mode-line-inactive ((,class :background ,bg-main - :foreground ,fg-active))) + :foreground ,fg-active + :box ,bg-dim))) `(mode-line-active ((,class :background ,bg-main - :foreground ,fg-active))) + :foreground ,fg-active + :box ,bg-inactive))) `(hl-line ((,class :background ,magenta-nuanced-bg))) |