From 74d363718f20479f239fb4cfa0a3d47393360edf Mon Sep 17 00:00:00 2001 From: Syohei YOSHIDA Date: Mon, 25 Jan 2016 22:51:22 +0900 Subject: [PATCH] Inherit default face for setting background attribute --- git-gutter.el | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/git-gutter.el b/git-gutter.el index 020f1f3..8320827 100644 --- a/git-gutter.el +++ b/git-gutter.el @@ -112,15 +112,15 @@ gutter information of other windows." :type 'integer) (defface git-gutter:separator - '((t (:foreground "cyan" :weight bold))) + '((t (:foreground "cyan" :weight bold :inherit default))) "Face of separator") (defface git-gutter:modified - '((t (:foreground "magenta" :weight bold))) + '((t (:foreground "magenta" :weight bold :inherit default))) "Face of modified") (defface git-gutter:added - '((t (:foreground "green" :weight bold))) + '((t (:foreground "green" :weight bold :inherit default))) "Face of added") (defface git-gutter:deleted