From 71672328465f57e40359fad0384691b18f9d1947 Mon Sep 17 00:00:00 2001 From: Juri Linkov Date: Tue, 19 Jul 2005 11:35:34 +0000 Subject: [PATCH] (info-xref-visited): Use light foreground color `violet' for dark backgrounds instead of dark color `magenta3'. (info-title-1): Use `yellow' color for dark backgrounds. --- lisp/info.el | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/lisp/info.el b/lisp/info.el index 695d67c3647..a7f4c494244 100644 --- a/lisp/info.el +++ b/lisp/info.el @@ -96,7 +96,7 @@ The Lisp code is executed when the node is selected.") (defface info-xref-visited '((default :inherit info-xref) (((class color) (background light)) :foreground "magenta4") - (((class color) (background dark)) :foreground "magenta3")) ;"violet"? + (((class color) (background dark)) :foreground "violet")) "Face for visited Info cross-references." :group 'info) @@ -3527,7 +3527,10 @@ the variable `Info-file-list-for-emacs'." (Info-goto-emacs-command-node command))))) (defface info-title-1 - '((((type tty pc) (class color)) :foreground "green" :weight bold) + '((((type tty pc) (class color) (background light)) + :foreground "green" :weight bold) + (((type tty pc) (class color) (background dark)) + :foreground "yellow" :weight bold) (t :height 1.2 :inherit info-title-2)) "Face for info titles at level 1." :group 'info) -- 2.39.2