Variable: org-faces-easy-properties

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

Value

((todo . :foreground)
 (tag . :foreground)
 (priority . :foreground))

Documentation

The property changes by easy faces.

This is an alist, the keys show the area of application, the values can be :foreground or :background. A color string for special keywords will then be interpreted as either foreground or background color.

This variable was added, or its default value changed, in Emacs 24.1.

Source Code

;; Defined in /usr/src/emacs/lisp/org/org-faces.el.gz
(defcustom org-faces-easy-properties
  '((todo . :foreground) (tag . :foreground) (priority . :foreground))
  "The property changes by easy faces.
This is an alist, the keys show the area of application, the values
can be `:foreground' or `:background'.  A color string for special
keywords will then be interpreted as either foreground or background
color."
  :group 'org-faces
  :group 'org-todo
  :version "24.1"
  :type '(repeat
	  (cons (choice (const todo) (const tag) (const priority))
		(choice (const :foreground) (const :background)))))