From 670cbf80e5746564a756b0f050508686ac3ea661 Mon Sep 17 00:00:00 2001 From: Marius Vollmer Date: Sun, 24 Aug 2008 05:37:13 +0300 Subject: [PATCH] Use dim gray for dark background color classes. Thanks to Phil Hagelberg! --- magit.el | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/magit.el b/magit.el index 1f04fcca..eba603a8 100644 --- a/magit.el +++ b/magit.el @@ -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)