Hi,
stardiviner <[email protected]> writes:
> I have following settings:
>
> ```elisp
>
> (setq org-todo-keyword-faces
> '(;;; todo keywords
> ("TODO" :foreground "orange"
> :box '(:color "dim gray" :line-width -1))
> ("URGENT" :foreground "red"
> :box '(:color "dim gray" :line-width -1))))
>
> ```
Instead of ":foreground "orange"" you should use the name of a face
that you can define yourself.
For example,
(setq org-todo-keyword-faces '(("START" . org-priority)))
will use the org-priority face for the TODO keywords "START".
HTH,
--
Bastien