From b0b65a2434122ad0103a792db7dff142b1209394 Mon Sep 17 00:00:00 2001 From: Phil Jackson Date: Thu, 20 May 2010 00:15:02 +0100 Subject: [PATCH] Nicer colours for the bisect refs. --- magit.el | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/magit.el b/magit.el index 67816ca3..5ec24274 100644 --- a/magit.el +++ b/magit.el @@ -251,24 +251,24 @@ Many Magit faces inherit from this one by default." (defface magit-log-head-label-bisect-good '((((class color) (background light)) :box t - :background "Grey85" - :foreground "green") + :background "light green" + :foreground "dark olive green") (((class color) (background dark)) :box t - :background "Grey11" - :foreground "green")) + :background "light green" + :foreground "dark olive green")) "Face for good bisect refs" :group 'magit) (defface magit-log-head-label-bisect-bad '((((class color) (background light)) :box t - :background "Grey85" - :foreground "red") + :background "IndianRed1" + :foreground "IndianRed4") (((class color) (background dark)) :box t - :background "Grey11" - :foreground "red")) + :background "IndianRed1" + :foreground "IndianRed4")) "Face for bad bisect refs" :group 'magit)