From 3278d1b0ce81487693597f4679c907ffc4580e8a Mon Sep 17 00:00:00 2001 From: Juri Linkov Date: Fri, 4 Sep 2026 18:36:45 +0300 Subject: [PATCH] * lisp/vc/log-view.el (log-view-file): Add dark background (bug#81740). --- lisp/vc/log-view.el | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lisp/vc/log-view.el b/lisp/vc/log-view.el index 01e589a6296..d4ad81ff5ac 100644 --- a/lisp/vc/log-view.el +++ b/lisp/vc/log-view.el @@ -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)