]> git.eshelyaron.com Git - emacs.git/commitdiff
(Info-title-1-face, Info-title-2-face, Info-title-3-face): Define
authorEli Zaretskii <eliz@gnu.org>
Tue, 17 Oct 2000 06:53:48 +0000 (06:53 +0000)
committerEli Zaretskii <eliz@gnu.org>
Tue, 17 Oct 2000 06:53:48 +0000 (06:53 +0000)
colors for tty's.

lisp/ChangeLog
lisp/info.el

index 4333d84585c27705e0ea114d6b0b37bdcafd3d88..7d3342b9f8bbf7976f97fb1dcf49234bd9fc527a 100644 (file)
@@ -1,3 +1,8 @@
+2000-10-17  Eli Zaretskii  <eliz@is.elta.co.il>
+
+       * info.el (Info-title-1-face, Info-title-2-face)
+       (Info-title-3-face): Define colors for tty's.
+
 2000-10-16  Eli Zaretskii  <eliz@is.elta.co.il>
 
        * term/pc-win.el (msdos-handle-reverse-video): Don't remove
index 1f3d2ae07fadc6fdd1833f3ac09b8d2444bd5eb2..e08b4e88ef1fe74a5a2a5332c4b6fa41a4a9a721 100644 (file)
@@ -2364,17 +2364,20 @@ the variable `Info-file-list-for-emacs'."
           (Info-goto-emacs-command-node command)))))
 \f
 (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)