* eglot.el (eglot-diagnostic-tag-unnecessary-face)
(eglot-diagnostic-tag-deprecated-face): Inherit from 'shadow'.
GitHub-reference: per https://github.com/joaotavora/eglot/issues/858
"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