Variable: org-fontify-todo-headline
org-fontify-todo-headline is a customizable variable defined in
org.el.gz.
Value
nil
Documentation
Non-nil means change the face of a headline if it is marked as TODO.
Normally, only the TODO/DONE keyword indicates the state of a headline.
When this is non-nil, the headline after the keyword is set to the
org-headline-todo as an additional indication.
This variable was added, or its default value changed, in Org version
9.4.
Source Code
;; Defined in /usr/src/emacs/lisp/org/org.el.gz
(defcustom org-fontify-todo-headline nil
"Non-nil means change the face of a headline if it is marked as TODO.
Normally, only the TODO/DONE keyword indicates the state of a headline.
When this is non-nil, the headline after the keyword is set to the
`org-headline-todo' as an additional indication."
:group 'org-appearance
:package-version '(Org . "9.4")
:type 'boolean
:safe #'booleanp)