emacs-orgmode
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [O] Can't set full face attributes in variable org-todo-keyword-face


From: Bastien
Subject: Re: [O] Can't set full face attributes in variable org-todo-keyword-faces
Date: Fri, 27 Apr 2018 01:34:59 +0200
User-agent: Gnus/5.13 (Gnus v5.13) Emacs/26.1 (gnu/linux)

Hi,

stardiviner <address@hidden> 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



reply via email to

[Prev in Thread] Current Thread [Next in Thread]