From: Eshel Yaron Date: Sat, 27 Apr 2024 18:39:19 +0000 (+0200) Subject: ; Refine 'completion-preview-exact' face X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=aa80d5d1e513829708a3195f98f3963ce1e819a9;p=emacs.git ; Refine 'completion-preview-exact' face * lisp/completion-preview.el (completion-preview-exact): Use more intense underline color to further distinguish this face from 'completion-preview-common' and improve legibility with dark background color. --- diff --git a/lisp/completion-preview.el b/lisp/completion-preview.el index 75e878133c7..ba81210e36a 100644 --- a/lisp/completion-preview.el +++ b/lisp/completion-preview.el @@ -129,7 +129,7 @@ If this option is nil, these commands do not display any message." (defface completion-preview-exact ;; An exact match is also the longest common prefix of all matches. - '((t :underline "gray25" :inherit completion-preview-common)) + '((t :underline "#00aa00" :inherit completion-preview-common)) "Face for matches in the completion preview overlay." :version "30.1")