* lisp/vc/log-view.el (log-view-file): Add dark background (bug#81740).

This commit is contained in:
Juri Linkov 2026-09-04 18:36:45 +03:00
parent 5d0939c7a1
commit 3278d1b0ce

View file

@ -205,6 +205,8 @@ If it is nil, `log-view-toggle-entry-display' does nothing.")
(defface log-view-file
'((((class color) (background light))
(:background "grey70" :weight bold :extend t))
(((class color) (background dark))
(:background "grey20" :weight bold :extend t))
(t (:weight bold :extend t)))
"Face for the file header line in `log-view-mode'."
:group 'log-view)