# HG changeset patch # User Eli Zaretskii # Date 971765548 0 # Node ID 90d5ec551e5d25c0805e19c2b99e82aac6717e03 # Parent d531dc7c269aa0aea327b7d843815faebdc69ede (Info-title-1-face, Info-title-2-face, Info-title-3-face): Define colors for tty's. diff -r d531dc7c269a -r 90d5ec551e5d lisp/info.el --- a/lisp/info.el Tue Oct 17 02:53:36 2000 +0000 +++ b/lisp/info.el Tue Oct 17 06:52:28 2000 +0000 @@ -2364,17 +2364,20 @@ (Info-goto-emacs-command-node command))))) (defface Info-title-1-face - '((t (:height 1.2 :inherit Info-title-2-face))) + '((((type tty pc) (class color)) (:foreground "lightred" :weight bold)) + (t (:height 1.2 :inherit Info-title-2-face))) "Face for Info titles at level 1." :group 'info) (defface Info-title-2-face - '((t (:height 1.2 :inherit Info-title-3-face))) + '((((type tty pc) (class color)) (:foreground "yellow" :weight bold)) + (t (:height 1.2 :inherit Info-title-3-face))) "Face for Info titles at level 2." :group 'info) (defface Info-title-3-face - '((t (:height 1.2 :weight bold :inherit variable-pitch))) + '((((type tty pc) (class color)) (:foreground "lightblue" :weight bold)) + (t (:height 1.2 :weight bold :inherit variable-pitch))) "Face for Info titles at level 3." :group 'info)