Talespin_Kit
Talespin_Kit

Reputation: 21877

Bold Font settings for TODO keywords in org-mode

I have added a NEXT todo keyword using the below setting

(setq org-todo-keywords
  '((sequence "TODO(t)" "NEXT(n)" "|" "DONE(d!/!)")))

I want to change the "NEXT" todo keyword font setting color to cyan and bold, i have used the following to set this up.

(setq org-todo-keyword-faces
  '(("NEXT" . (:foreground "cyan" :bold t))))

The color gets changed but the "NEXT" keyword font is not displayed in bold as the "TODO" keyword gets displayed. How to make it to bold.

Upvotes: 2

Views: 1855

Answers (1)

kindahero
kindahero

Reputation: 5867

how about this.?

(setq org-todo-keyword-faces
  (quote (("NEXT" :foreground "cyan" :weight bold))))

Upvotes: 6

Related Questions