branch: externals/eglot
commit 2548c25c843d217e03ddd92b19a9d66483232585
Author: João Távora <joaotav...@gmail.com>
Commit: João Távora <joaotav...@gmail.com>

    Per #858: Have a couple of LSP faces inherit from basic "shadow"
    
    * eglot.el (eglot-diagnostic-tag-unnecessary-face)
    (eglot-diagnostic-tag-deprecated-face): Inherit from 'shadow'.
---
 eglot.el | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/eglot.el b/eglot.el
index 3f84b3b7a2..7bff005973 100644
--- a/eglot.el
+++ b/eglot.el
@@ -258,11 +258,11 @@ CONTACT can be:
   "Face for package-name in EGLOT's mode line.")
 
 (defface eglot-diagnostic-tag-unnecessary-face
-  '((t . (:weight ultra-light)))
+  '((t (:inherit shadow)))
   "Face used to render unused or unnecessary code.")
 
 (defface eglot-diagnostic-tag-deprecated-face
-  '((t . (:strike-through t)))
+  '((t . (:inherit shadow :strike-through t)))
   "Face used to render deprecated or obsolete code.")
 
 (defcustom eglot-autoreconnect 3

Reply via email to