Skip to content

Commit

Permalink
Merge pull request #115 from syohex/inherit-default
Browse files Browse the repository at this point in the history
Inherit default face for setting background attribute
  • Loading branch information
syohex committed Jan 25, 2016
2 parents a9ac2f6 + 74d3637 commit b71d34b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions git-gutter.el
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit b71d34b

Please sign in to comment.