# HG changeset patch # User Eli Zaretskii # Date 979040221 0 # Node ID 7e92991883c26997907501aad0c9bace04b829e9 # Parent 60037f41e0a88314db1ba14b923ecf4f31ffacd5 (isearch, isearch-lazy-highlight-face): New definitions for face colors and attributes. diff -r 60037f41e0a8 -r 7e92991883c2 lisp/isearch.el --- a/lisp/isearch.el Tue Jan 09 11:22:36 2001 +0000 +++ b/lisp/isearch.el Tue Jan 09 11:37:01 2001 +0000 @@ -1886,14 +1886,26 @@ :group 'isearch) (defface isearch - '((t (:inherit region))) - "Face for highlighting matches." + '((((type tty pc) (class color)) + (:background "magenta4" :foreground "cyan1")) + (((class color) (background light)) + (:background "magenta4" :foreground "lightskyblue1")) + (((class color) (background dark)) + (:background "palevioletred2" :foreground "brown4")) + (t (:inverse-video t))) + "Face for highlighting Isearch matches." :group 'isearch-faces) (defvar isearch 'isearch) (defface isearch-lazy-highlight-face - '((t (:inherit secondary-selection))) - "Face for lazy highlighting of matches." + '((((type tty pc) (class color)) + (:background "turquoise3")) + (((class color) (background light)) + (:background "paleturquoise")) + (((class color) (background dark)) + (:background "paleturquoise4")) + (t (:underline t))) + "Face for lazy highlighting of Isearch matches other than the current one." :group 'isearch-faces) (defvar isearch-lazy-highlight-face 'isearch-lazy-highlight-face)