Mercurial > emacs
changeset 32563:90d5ec551e5d
(Info-title-1-face, Info-title-2-face, Info-title-3-face): Define
colors for tty's.
author | Eli Zaretskii <eliz@gnu.org> |
---|---|
date | Tue, 17 Oct 2000 06:52:28 +0000 |
parents | d531dc7c269a |
children | d9c01583abf5 |
files | lisp/info.el |
diffstat | 1 files changed, 6 insertions(+), 3 deletions(-) [+] |
line wrap: on
line diff
--- 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)