From: Lars Ingebrigtsen Date: Sat, 5 Feb 2022 22:46:02 +0000 (+0100) Subject: Add a :distant-foreground to the lazy-highlight face X-Git-Tag: emacs-29.0.90~2503 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=a4eeea812441c2456ad522659869be089be9d7a9;p=emacs.git Add a :distant-foreground to the lazy-highlight face * lisp/isearch.el (lazy-highlight): Add a :distant-foreground colour so that the text is always legible (bug#16969). --- diff --git a/lisp/isearch.el b/lisp/isearch.el index 4086a1bf115..8970216398b 100644 --- a/lisp/isearch.el +++ b/lisp/isearch.el @@ -430,13 +430,13 @@ and doesn't remove full-buffer highlighting after a search." (defface lazy-highlight '((((class color) (min-colors 88) (background light)) - (:background "paleturquoise")) + (:background "paleturquoise" :distant-foreground "black")) (((class color) (min-colors 88) (background dark)) - (:background "paleturquoise4")) + (:background "paleturquoise4" :distant-foreground "white")) (((class color) (min-colors 16)) - (:background "turquoise3")) + (:background "turquoise3" :distant-foreground "white")) (((class color) (min-colors 8)) - (:background "turquoise3")) + (:background "turquoise3" :distant-foreground "white")) (t (:underline t))) "Face for lazy highlighting of matches other than the current one." :group 'lazy-highlight