Re: [O] Change Todo colors

2014-03-03 Thread Jonathan Leech-Pepin
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: ,---

Re: [O] Change Todo colors

2014-03-03 Thread Fabrice Niessen
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

Re: [O] Change Todo colors

2014-02-28 Thread zwz
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

[O] Change Todo colors

2014-02-28 Thread Chris Henderson
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