branch: externals/tempel
commit 36a7977702e7d3d7ca1da193208a17cbc61f2200
Author: Daniel Mendler <[email protected]>
Commit: Daniel Mendler <[email protected]>

    Use cyan color for default values
---
 tempel.el | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/tempel.el b/tempel.el
index 0d509da7de..74aba08daf 100644
--- a/tempel.el
+++ b/tempel.el
@@ -79,7 +79,11 @@
   "Face used for evaluated forms.")
 
 (defface tempel-default
-  '((t :inherit tempel-field :slant italic))
+  '((((class color) (min-colors 88) (background light))
+     :background "#ebf6fa" :foreground "#0f3360" :underline "#005f88" :slant 
italic)
+    (((class color) (min-colors 88) (background dark))
+     :background "#041529" :foreground "#a8e5e5" :underline "#005f88" :slant 
italic)
+    (t :inherit highlight :slant italic))
   "Face used for default values.")
 
 (defvar tempel--templates nil

Reply via email to