branch: elpa/annotate
commit f65d10ac99757e29e8ac5de27b1760c1127a20bc
Author: Bastian <ba...@bastibe.de>
Commit: Bastian <ba...@bastibe.de>

    improve faces
---
 annotate.el | 14 ++++++++++++--
 1 file changed, 12 insertions(+), 2 deletions(-)

diff --git a/annotate.el b/annotate.el
index a17eb66396..653d28043e 100644
--- a/annotate.el
+++ b/annotate.el
@@ -10,12 +10,22 @@
   :type 'file
   :group 'annotate)
 
-(defcustom annotate-highlight-face 'highlight
+(defface annotate-highlight
+  '((t (:underline "coral")))
+  "Face for annotation highlights."
+  :group 'annotate)
+
+(defcustom annotate-highlight-face 'annotate-highlight
   "Face for annotations."
   :type 'face
   :group 'annotate)
 
-(defcustom annotate-annotation-face 'highlight
+(defface annotate-annotation
+  '((t (:background "coral" :foreground "black")))
+  "Face for annotations."
+  :group 'annotate)
+
+(defcustom annotate-annotation-face 'annotate-annotation
   "Face for annotations."
   :type 'face
   :group 'annotate)

Reply via email to