diff options
author | Eli Zaretskii <eliz@gnu.org> | 2000-10-19 06:59:00 +0000 |
---|---|---|
committer | Eli Zaretskii <eliz@gnu.org> | 2000-10-19 06:59:00 +0000 |
commit | b250866f9fec710502ad564a897db0b992eea019 (patch) | |
tree | b308bae56cd6c95aba0852c8cae5faadd06133cd /lisp/info.el | |
parent | 773272d8367ed141dcb1351f8301bc27eb463b7b (diff) | |
download | emacs-b250866f9fec710502ad564a897db0b992eea019.tar.gz |
(Info-title-{1,2,3}-face): Change tty colors as suggested by Miles Bader.
Diffstat (limited to 'lisp/info.el')
-rw-r--r-- | lisp/info.el | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lisp/info.el b/lisp/info.el index c375bd871b6..5817e6face1 100644 --- a/lisp/info.el +++ b/lisp/info.el @@ -2360,19 +2360,19 @@ the variable `Info-file-list-for-emacs'." (Info-goto-emacs-command-node command))))) (defface Info-title-1-face - '((((type tty pc) (class color)) (:foreground "lightred" :weight bold)) + '((((type tty pc) (class color)) (:foreground "yellow" :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 - '((((type tty pc) (class color)) (:foreground "yellow" :weight bold)) + '((((type tty pc) (class color)) (:foreground "lightblue" :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 - '((((type tty pc) (class color)) (:foreground "lightblue" :weight bold)) + '((((type tty pc) (class color)) (:weight bold)) (t (:height 1.2 :weight bold :inherit variable-pitch))) "Face for Info titles at level 3." :group 'info) |