emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[elpa] scratch/add-vdiff 9547850 041/258: Use diff faces from theme


From: Justin Burkett
Subject: [elpa] scratch/add-vdiff 9547850 041/258: Use diff faces from theme
Date: Wed, 17 May 2017 08:13:19 -0400 (EDT)

branch: scratch/add-vdiff
commit 9547850871cdbc75cf4ed6c96fb15206a1b9f148
Author: justbur <address@hidden>
Commit: justbur <address@hidden>

    Use diff faces from theme
---
 vdiff.el | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/vdiff.el b/vdiff.el
index b4c259d..12cc530 100644
--- a/vdiff.el
+++ b/vdiff.el
@@ -146,12 +146,12 @@ lines hidden."
   :type 'string)
 
 (defface vdiff-addition-face
-  '((t :background "#27321C"))
+  '((t :inherit diff-added))
   "Face for additions"
   :group 'vdiff)
 
 (defface vdiff-change-face
-  '((t :background "#4C3A25"))
+  '((t :inherit diff-changed))
   "Face for changes"
   :group 'vdiff)
 
@@ -166,7 +166,7 @@ lines hidden."
   :group 'vdiff)
 
 (defface vdiff-subtraction-face
-  '((t :background "#3F1B1B"))
+  '((t :inherit diff-removed))
   "Face for changes"
   :group 'vdiff)
 



reply via email to

[Prev in Thread] Current Thread [Next in Thread]