Refine colour mapping for the mode line

This commit is contained in:
Protesilaos Stavrou 2022-11-28 07:56:23 +02:00
parent cd1829badf
commit 4ab877d8c1
No known key found for this signature in database
GPG key ID: 99BD6459CD5CA3EA
3 changed files with 4 additions and 4 deletions

View file

@ -125,7 +125,7 @@
(cyan-graph-1-bg "#00808f")
;; Special hues
(bg-mode-line "#505050") (fg-mode-line "#ffffff")
(bg-mode-line "#505050") (bg-mode-line-inactive "#323232")
(bg-accent "#ffc200")
(bg-completion "#254b5f")
(bg-hover "#457b2f")

View file

@ -125,7 +125,7 @@
(cyan-graph-1-bg "#afefff")
;; Special hues
(bg-mode-line "#b3b3b3") (fg-mode-line "#000000")
(bg-mode-line "#b3b3b3") (bg-mode-line-inactive "#e5e5e5")
(bg-accent "#0000cc")
(bg-completion "#bfe8ff")
(bg-hover "#aaeccf")

View file

@ -1500,14 +1500,14 @@ Helper function for `standard-themes-preview-colors'."
:background ,@(if standard-themes-mode-line-accented
(list bg-mode-line-accent)
(list bg-mode-line))
:foreground ,fg-mode-line)))
:foreground ,fg-main)))
`(mode-line-active ((,c :inherit mode-line :box (:line-width -1 :style released-button))))
`(mode-line-buffer-id ((,c :inherit bold)))
`(mode-line-emphasis ((,c :inherit bold :foreground ,modeline-info)))
`(mode-line-highlight ((,c :inherit highlight)))
`(mode-line-inactive ((,c :inherit standard-themes-ui-variable-pitch
:box (:line-width -1 :color ,border)
:background ,bg-alt :foreground ,fg-dim)))
:background ,bg-mode-line-inactive :foreground ,fg-dim)))
;;;; mu4e
`(mu4e-attach-number-face ((,c :inherit bold :foreground ,fg-dim)))
`(mu4e-cited-1-face ((,c :inherit message-cited-text-1)))