mirror of
https://github.com/correl/doom-modeline.git
synced 2024-11-27 11:09:52 +00:00
Fix: inactive bar face.
DO NOT use :inverse-video in this face since face-background gets invalid color from :reverse-video faces.
This commit is contained in:
parent
677dc9ab2c
commit
b70235290d
1 changed files with 4 additions and 1 deletions
|
@ -189,7 +189,10 @@ Given ~/Projects/FOSS/emacs/lisp/comint.el
|
|||
"The face used for the left-most bar on the mode-line when eldoc-eval is
|
||||
active.")
|
||||
|
||||
(defface doom-modeline-inactive-bar '((t (:inherit warning :inverse-video t)))
|
||||
(defface doom-modeline-inactive-bar `((t (:background
|
||||
,(face-foreground 'mode-line-inactive)
|
||||
:foreground
|
||||
,(face-background 'mode-line-inactive))))
|
||||
"The face used for the left-most bar on the mode-line of an inactive window.")
|
||||
|
||||
(defface doom-modeline-evil-emacs-state '((t (:inherit doom-modeline-warning)))
|
||||
|
|
Loading…
Reference in a new issue