diff options
| author | Michael Olson <mwolson@gnu.org> | 2006-04-25 14:27:00 +0000 | 
|---|---|---|
| committer | Michael Olson <mwolson@gnu.org> | 2006-04-25 14:27:00 +0000 | 
| commit | e57195633dabb65ea67d39b1fc58958e8f4a544c (patch) | |
| tree | 2e0aff24d17f6e40765a15c6e783520a90a6da40 | |
| parent | a051095baa3bb9f50be8b8232a46bce12c03600c (diff) | |
emms-playlist-mode: Add face entries for light backgrounds.
darcs-hash:20060425142716-1bfb2-14d6aca08e78c48bad74b52baf680dbc7f22413a.gz
| -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")))  | 
