1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-11-24 07:20:37 +00:00

(info-node, info-xref): Add dark-background variants.

(info-header-xref, info-header-node): Change to inherit from non-header faces.
This commit is contained in:
Miles Bader 2000-09-17 17:03:20 +00:00
parent e209b8378e
commit 52cbdfbd0a

View File

@ -61,7 +61,8 @@ The Lisp code is executed when the node is selected.")
:group 'info)
(defface info-node
'((((class color)) (:foreground "brown" :bold t :italic t))
'((((class color) (background light)) (:foreground "brown" :bold t :italic t))
(((class color) (background dark)) (:foreground "white" :bold t :italic t))
(t (:bold t :italic t)))
"Face for Info node names."
:group 'info)
@ -73,7 +74,8 @@ The Lisp code is executed when the node is selected.")
:group 'info)
(defface info-xref
'((((class color)) (:foreground "magenta4" :bold t))
'((((class color) (background light)) (:foreground "magenta4" :bold t))
(((class color) (background dark)) (:foreground "cyan" :bold t))
(t (:bold t)))
"Face for Info cross-references."
:group 'info)
@ -90,12 +92,12 @@ A header-line does not scroll with the rest of the buffer."
:group 'info)
(defface info-header-xref
'((t (:weight bold)))
'((t (:inherit info-xref)))
"Face for Info cross-references in a node header."
:group 'info)
(defface info-header-node
'((t (:weight bold :slant italic)))
'((t (:inherit info-node)))
"Face for Info nodes in a node header."
:group 'info)