# HG changeset patch # User Juri Linkov # Date 1121772934 0 # Node ID eba73e4b7ea62186b9a867caa4293786eb3faecd # Parent bbcc6e51d3ab07feb91df041359d23ea57c0f32c (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. diff -r bbcc6e51d3ab -r eba73e4b7ea6 lisp/info.el --- a/lisp/info.el Tue Jul 19 11:34:17 2005 +0000 +++ b/lisp/info.el Tue Jul 19 11:35:34 2005 +0000 @@ -96,7 +96,7 @@ (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 @@ (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)