Mercurial > emacs
changeset 64501:eba73e4b7ea6
(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.
author | Juri Linkov <juri@jurta.org> |
---|---|
date | Tue, 19 Jul 2005 11:35:34 +0000 |
parents | bbcc6e51d3ab |
children | 1e7ae6f38b3a |
files | lisp/info.el |
diffstat | 1 files changed, 5 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- 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)