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
|
||||
'((((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)
|
||||
|
||||
|
|
Loading…
Reference in a new issue