Add :inherit to +workspace faces

This commit is contained in:
Henrik Lissner 2017-06-09 15:40:53 +02:00
parent a0a7f3ec42
commit 48ec4ce36f
No known key found for this signature in database
GPG Key ID: 5F6C0EA160557395

View File

@ -6,20 +6,12 @@
(defvar +workspace--last nil)
(defface +workspace-tab-selected-face
'((((class color) (background light))
(:background "#333333" :foreground "#000000")) ;; FIXME
(((class color) (background dark))
(:background "#51afef" :foreground "#181e26")))
'(((t (:inherit highlight))))
"The face for selected tabs displayed by `+workspace/display'"
:group 'doom)
(defface +workspace-tab-face
'((((class color) (background light))
(:background "#333333" :foreground "#000000")) ;; FIXME
(((type graphic) (class color) (background dark))
(:background "#23272e" :foreground "#5B6268"))
(((class color) (background dark))
(:background "#262626" :foreground "#525252")))
'(((t (:inherit default))))
"The face for selected tabs displayed by `+workspace/display'"
:group 'doom)