Should be able to just use `org-todo-keyword-faces` the way he was trying
in the original post. I've got the following in my init.el. Re-evaluating
it after changes (C-M-x) and then switching back to an org buffer makes the
changes on the fly:
,---
zwz wrote:
> Chris Henderson writes:
>
>> I'd like to change the color of Next to Red and Started to brown. At the
>> moment, todo/ next and started all showing as red.
>>
>> Here is my .emacs snippet.
>>
>> (setq org-todo-keywords
>> '((sequence "TODO(t)" "Next(n)" "Started(s)" "|" "D
You should use "custom-set-faces" instead of "setq".
Chris Henderson writes:
> I'd like to change the color of Next to Red and Started to brown. At the
> moment, todo/ next and started all showing as red.
>
> Here is my .emacs snippet.
>
> (setq org-todo-keywords
> '((sequence "TODO
I'd like to change the color of Next to Red and Started to brown. At the
moment, todo/ next and started all showing as red.
Here is my .emacs snippet.
(setq org-todo-keywords
'((sequence "TODO(t)" "Next(n)" "Started(s)" "|" "DONE(d!)")
(sequence "|" "CANCELED(c)")))
(se