Variable: rst-adornment-faces-alist

rst-adornment-faces-alist is a customizable variable defined in rst.el.gz.

Value

((t . rst-transition)
 (nil . rst-adornment)
 (1 . rst-level-1)
 (2 . rst-level-2)
 (3 . rst-level-3)
 (4 . rst-level-4)
 (5 . rst-level-5)
 (6 . rst-level-6))

Documentation

Faces for the various adornment types.

Key is a number (for the section title text of that level starting with 1), t (for transitions) or nil (for section title adornment). If you need levels beyond 6 you have to define faces of your own.

Source Code

;; Defined in /usr/src/emacs/lisp/textmodes/rst.el.gz
(defcustom rst-adornment-faces-alist
  '((t . rst-transition)
    (nil . rst-adornment)
    (1 . rst-level-1)
    (2 . rst-level-2)
    (3 . rst-level-3)
    (4 . rst-level-4)
    (5 . rst-level-5)
    (6 . rst-level-6))
    "Faces for the various adornment types.
Key is a number (for the section title text of that level
starting with 1), t (for transitions) or nil (for section title
adornment).  If you need levels beyond 6 you have to define faces
of your own."
  :group 'rst-faces
  :type '(alist
	  :key-type
	  (choice
	   (integer :tag "Section level")
	   (const :tag "transitions" t)
	   (const :tag "section title adornment" nil))
	  :value-type (face)))