diff options
-rw-r--r-- | emms-playlist-mode.el | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/emms-playlist-mode.el b/emms-playlist-mode.el index b6d0b18..dd51418 100644 --- a/emms-playlist-mode.el +++ b/emms-playlist-mode.el @@ -73,6 +73,8 @@ (defface emms-playlist-track-face '((((class color) (background dark)) (:foreground "DarkSeaGreen")) + (((class color) (background light)) + (:foreground "Blue")) (((type tty) (class mono)) (:inverse-video t)) (t (:background "Blue"))) @@ -82,6 +84,8 @@ (defface emms-playlist-selected-face '((((class color) (background dark)) (:foreground "SteelBlue3")) + (((class color) (background light)) + (:background "blue3" :foreground "white")) (((type tty) (class mono)) (:inverse-video t)) (t (:background "blue3"))) |