Use dim gray for dark background color classes.

Thanks to Phil Hagelberg!
This commit is contained in:
Marius Vollmer 2008-08-24 05:37:13 +03:00
parent 20c9eccccf
commit 670cbf80e5

View file

@ -97,7 +97,10 @@ Many Magit faces inherit from this one by default."
:group 'magit)
(defface magit-item-highlight
'((t :background "gray95"))
'((((class color) (background light))
:background "gray95")
(((class color) (background dark))
:background "dim gray"))
"Face for highlighting the current item."
:group 'magit)