[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[elpa] externals/jinx 63f49c386e 1/2: jinx-misspelled: Use less obtrusiv
From: |
ELPA Syncer |
Subject: |
[elpa] externals/jinx 63f49c386e 1/2: jinx-misspelled: Use less obtrusive colors |
Date: |
Mon, 27 Mar 2023 11:58:37 -0400 (EDT) |
branch: externals/jinx
commit 63f49c386e76807269578214e67af13ba1794de4
Author: Daniel Mendler <mail@daniel-mendler.de>
Commit: Daniel Mendler <mail@daniel-mendler.de>
jinx-misspelled: Use less obtrusive colors
---
jinx.el | 6 +++++-
1 file changed, 5 insertions(+), 1 deletion(-)
diff --git a/jinx.el b/jinx.el
index 88f2d6836d..0a35bcd3a5 100644
--- a/jinx.el
+++ b/jinx.el
@@ -104,8 +104,12 @@
:type 'float)
(defface jinx-misspelled
- '((((supports :underline (:style wave)))
+ '((((class color) (min-colors 88) (background dark)
+ (supports :underline (:style wave)))
:underline (:style wave :color "red"))
+ (((class color) (min-colors 88) (background light)
+ (supports :underline (:style wave)))
+ :underline (:style wave :color "#5f4400"))
(t :underline t :inherit error))
"Face used for misspelled words.")