Nicer colours for the bisect refs.
This commit is contained in:
parent
9878186262
commit
b0b65a2434
1 changed files with 8 additions and 8 deletions
16
magit.el
16
magit.el
|
@ -251,24 +251,24 @@ Many Magit faces inherit from this one by default."
|
||||||
(defface magit-log-head-label-bisect-good
|
(defface magit-log-head-label-bisect-good
|
||||||
'((((class color) (background light))
|
'((((class color) (background light))
|
||||||
:box t
|
:box t
|
||||||
:background "Grey85"
|
:background "light green"
|
||||||
:foreground "green")
|
:foreground "dark olive green")
|
||||||
(((class color) (background dark))
|
(((class color) (background dark))
|
||||||
:box t
|
:box t
|
||||||
:background "Grey11"
|
:background "light green"
|
||||||
:foreground "green"))
|
:foreground "dark olive green"))
|
||||||
"Face for good bisect refs"
|
"Face for good bisect refs"
|
||||||
:group 'magit)
|
:group 'magit)
|
||||||
|
|
||||||
(defface magit-log-head-label-bisect-bad
|
(defface magit-log-head-label-bisect-bad
|
||||||
'((((class color) (background light))
|
'((((class color) (background light))
|
||||||
:box t
|
:box t
|
||||||
:background "Grey85"
|
:background "IndianRed1"
|
||||||
:foreground "red")
|
:foreground "IndianRed4")
|
||||||
(((class color) (background dark))
|
(((class color) (background dark))
|
||||||
:box t
|
:box t
|
||||||
:background "Grey11"
|
:background "IndianRed1"
|
||||||
:foreground "red"))
|
:foreground "IndianRed4"))
|
||||||
"Face for bad bisect refs"
|
"Face for bad bisect refs"
|
||||||
:group 'magit)
|
:group 'magit)
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue