From 48ec4ce36ff477ff42db8a857139ce9ffd00db90 Mon Sep 17 00:00:00 2001 From: Henrik Lissner Date: Fri, 9 Jun 2017 15:40:53 +0200 Subject: [PATCH] Add :inherit to +workspace faces --- modules/feature/workspaces/autoload/workspaces.el | 12 ++---------- 1 file changed, 2 insertions(+), 10 deletions(-) diff --git a/modules/feature/workspaces/autoload/workspaces.el b/modules/feature/workspaces/autoload/workspaces.el index 964af6159..60cef3da2 100644 --- a/modules/feature/workspaces/autoload/workspaces.el +++ b/modules/feature/workspaces/autoload/workspaces.el @@ -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)