Variable: org-agenda-day-face-function
org-agenda-day-face-function is a customizable variable defined in
org-agenda.el.gz.
Value
nil
Documentation
Function called to determine what face should be used to display a day.
The only argument passed to that function is the day. It should returns a face, or nil if does not want to specify a face and let the normal rules apply.
This variable was added, or its default value changed, in Emacs 24.1.
Source Code
;; Defined in /usr/src/emacs/lisp/org/org-agenda.el.gz
(defcustom org-agenda-day-face-function nil
"Function called to determine what face should be used to display a day.
The only argument passed to that function is the day. It should
returns a face, or nil if does not want to specify a face and let
the normal rules apply."
:group 'org-agenda-line-format
:version "24.1"
:type '(choice (const nil) (function)))