From: Mark Wooding Date: Mon, 2 Oct 2017 11:48:07 +0000 (+0100) Subject: el/dot-emacs.el: Twiddle Magit blame heading faces. X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~mdw/git/profile/commitdiff_plain/857045c69577e5eda802178eeb5cb20c3182b68c el/dot-emacs.el: Twiddle Magit blame heading faces. Firstly, don't pick up face weight and slant from the surrounding text. Secondly, highlight the parts of the heading in different ways. --- diff --git a/el/dot-emacs.el b/el/dot-emacs.el index c46143c..db360e1 100644 --- a/el/dot-emacs.el +++ b/el/dot-emacs.el @@ -1548,6 +1548,18 @@ (mdw-define-face magit-diff-removed (mdw-define-face magit-diff-removed-highlight (((min-colors 64)) :foreground "#eecccc" :background "#663333") (((class color)) :foreground "red" :background "blue")) +(mdw-define-face magit-blame-heading + (((min-colors 64)) :foreground "white" :background "grey25" + :weight normal :slant normal) + (((class color)) :foreground "white" :background "blue" + :weight normal :slant normal)) +(mdw-define-face magit-blame-name + (t :inherit magit-blame-heading :slant italic)) +(mdw-define-face magit-blame-date + (((min-colors 64)) :inherit magit-blame-heading :foreground "grey60") + (((class color)) :inherit magit-blame-heading :foreground "cyan")) +(mdw-define-face magit-blame-summary + (t :inherit magit-blame-heading :weight bold)) (mdw-define-face dylan-header-background (((min-colors 64)) :background "NavyBlue")