diff options
| -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'." | |||
| 2360 | (Info-goto-emacs-command-node command))))) | 2360 | (Info-goto-emacs-command-node command))))) |
| 2361 | 2361 | ||
| 2362 | (defface Info-title-1-face | 2362 | (defface Info-title-1-face |
| 2363 | '((((type tty pc) (class color)) (:foreground "lightred" :weight bold)) | 2363 | '((((type tty pc) (class color)) (:foreground "yellow" :weight bold)) |
| 2364 | (t (:height 1.2 :inherit Info-title-2-face))) | 2364 | (t (:height 1.2 :inherit Info-title-2-face))) |
| 2365 | "Face for Info titles at level 1." | 2365 | "Face for Info titles at level 1." |
| 2366 | :group 'info) | 2366 | :group 'info) |
| 2367 | 2367 | ||
| 2368 | (defface Info-title-2-face | 2368 | (defface Info-title-2-face |
| 2369 | '((((type tty pc) (class color)) (:foreground "yellow" :weight bold)) | 2369 | '((((type tty pc) (class color)) (:foreground "lightblue" :weight bold)) |
| 2370 | (t (:height 1.2 :inherit Info-title-3-face))) | 2370 | (t (:height 1.2 :inherit Info-title-3-face))) |
| 2371 | "Face for Info titles at level 2." | 2371 | "Face for Info titles at level 2." |
| 2372 | :group 'info) | 2372 | :group 'info) |
| 2373 | 2373 | ||
| 2374 | (defface Info-title-3-face | 2374 | (defface Info-title-3-face |
| 2375 | '((((type tty pc) (class color)) (:foreground "lightblue" :weight bold)) | 2375 | '((((type tty pc) (class color)) (:weight bold)) |
| 2376 | (t (:height 1.2 :weight bold :inherit variable-pitch))) | 2376 | (t (:height 1.2 :weight bold :inherit variable-pitch))) |
| 2377 | "Face for Info titles at level 3." | 2377 | "Face for Info titles at level 3." |
| 2378 | :group 'info) | 2378 | :group 'info) |