From 53f93f0d79752bf5032e7e1acbd5b799b01725d9 Mon Sep 17 00:00:00 2001 Message-Id: <53f93f0d79752bf5032e7e1acbd5b799b01725d9.1717720988.git.mdw@distorted.org.uk> From: Mark Wooding Date: Sat, 15 Jul 2017 13:11:09 +0100 Subject: [PATCH] el/dot-emacs.el: Configure some Magit faces to work better in terminals. Organization: Straylight/Edgeware From: Mark Wooding --- el/dot-emacs.el | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/el/dot-emacs.el b/el/dot-emacs.el index d8e9af7..7cd9886 100644 --- a/el/dot-emacs.el +++ b/el/dot-emacs.el @@ -1421,6 +1421,28 @@ (mdw-define-face ediff-even-diff-Ancestor (mdw-define-face ediff-odd-diff-Ancestor (((class color) (type x)) :background "#320")) +(mdw-define-face magit-hash + (((class color) (type x)) :foreground "grey40") + (((class color) (type tty)) :foreground "blue")) +(mdw-define-face magit-diff-hunk-heading + (((class color) (type x)) :foreground "grey70" :background "grey25") + (((class color) (type tty)) :foreground "yellow")) +(mdw-define-face magit-diff-hunk-heading-highlight + (((class color) (type x)) :foreground "grey70" :background "grey35") + (((class color) (type tty)) :foreground "yellow" :background "blue")) +(mdw-define-face magit-diff-added + (((class color) (type x)) :foreground "#ddffdd" :background "#335533") + (((class color) (type tty)) :foreground "green")) +(mdw-define-face magit-diff-added-highlight + (((class color) (type x)) :foreground "#cceecc" :background "#336633") + (((class color) (type tty)) :foreground "green" :background "blue")) +(mdw-define-face magit-diff-removed + (((class color) (type x)) :foreground "#ffdddd" :background "#553333") + (((class color) (type tty)) :foreground "red")) +(mdw-define-face magit-diff-removed-highlight + (((class color) (type x)) :foreground "#eecccc" :background "#663333") + (((class color) (type tty)) :foreground "red" :background "blue")) + (mdw-define-face dylan-header-background (((class color) (type x)) :background "NavyBlue") (t :background "blue")) -- [mdw]