Different tag and head label colors for different backgrounds
This commit is contained in:
parent
f6956593bc
commit
e2fa665ba1
1 changed files with 8 additions and 2 deletions
10
magit.el
10
magit.el
|
@ -113,12 +113,18 @@ Many Magit faces inherit from this one by default."
|
|||
:group 'magit)
|
||||
|
||||
(defface magit-log-tag-label
|
||||
'((t :background "DarkGoldenRod"))
|
||||
'((((class color) (background light))
|
||||
:background "LightGoldenRod")
|
||||
(((class color) (background dark))
|
||||
:background "DarkGoldenRod"))
|
||||
"Face for git tag labels shown in log buffer."
|
||||
:group 'magit)
|
||||
|
||||
(defface magit-log-head-label
|
||||
'((t :background "DarkGreen"))
|
||||
'((((class color) (background light))
|
||||
:background "spring green")
|
||||
(((class color) (background dark))
|
||||
:background "DarkGreen"))
|
||||
"Face for branch head labels shown in log buffer."
|
||||
:group 'magit)
|
||||
|
||||
|
|
Loading…
Reference in a new issue