Nicer colours for the bisect refs.

This commit is contained in:
Phil Jackson 2010-05-20 00:15:02 +01:00
parent 9878186262
commit b0b65a2434

View file

@ -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)