Variable: org-priority-faces

org-priority-faces is a customizable variable defined in org-faces.el.gz.

Value

nil

Documentation

Faces for specific Priorities.

This is an association list, whose keys are priorities and values are faces. The face can be a symbol, a color as a string, or a property list of attributes, like
    (:foreground "blue" :weight bold :underline t).
If it is a color string, the variable org-faces-easy-properties determines if it is a foreground or a background color.

Source Code

;; Defined in /usr/src/emacs/lisp/org/org-faces.el.gz
(defcustom org-priority-faces nil
  "Faces for specific Priorities.
This is an association list, whose keys are priorities and values are
faces.  The face can be a symbol, a color as a string, or a property
list of attributes, like
    (:foreground \"blue\" :weight bold :underline t).
If it is a color string, the variable `org-faces-easy-properties'
determines if it is a foreground or a background color."
  :group 'org-faces
  :group 'org-todo
  :type '(choice (const :tag "Defaults" nil)
                 (alist :tag "Association list"
                        :key-type
                        (choice :tag "Priority"
                                (character :tag "Character" :value ?A)
                                (natnum :tag "Number" :value 1))
                        :value-type (choice :tag "Face    "
                                            (string :tag "Color")
                                            (sexp :tag "Face")))))