From 857045c69577e5eda802178eeb5cb20c3182b68c Mon Sep 17 00:00:00 2001 Message-Id: <857045c69577e5eda802178eeb5cb20c3182b68c.1718304575.git.mdw@distorted.org.uk> From: Mark Wooding Date: Mon, 2 Oct 2017 12:48:07 +0100 Subject: [PATCH] el/dot-emacs.el: Twiddle Magit blame heading faces. Organization: Straylight/Edgeware From: Mark Wooding Firstly, don't pick up face weight and slant from the surrounding text. Secondly, highlight the parts of the heading in different ways. --- el/dot-emacs.el | 12 ++++++++++++ 1 file changed, 12 insertions(+) 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") -- [mdw]