Variable: org-num-face
org-num-face is a customizable variable defined in org-num.el.gz.
Value
nil
Documentation
Face to use for numbering.
When nil, use the same face as the headline. This value is
ignored if org-num-format-function specifies a face for its
output.
This variable was added, or its default value changed, in Org version
9.3.
Source Code
;; Defined in /usr/src/emacs/lisp/org/org-num.el.gz
;;; Customization
;;;###autoload
(defcustom org-num-face nil
"Face to use for numbering.
When nil, use the same face as the headline. This value is
ignored if `org-num-format-function' specifies a face for its
output."
:group 'org-appearance
:package-version '(Org . "9.3")
:type '(choice (const :tag "Like the headline" nil)
(face :tag "Use face"))
:safe (lambda (val) (or (null val) (facep val))))