Re: [Orgmode] How do I change font for DONE tasks?: "address@hidden writes:
> M-x org-customize then browse your way to Org Font Lock->Org Faces->Org
> Done
This will just change the font for the "DONE" keyword. If you want to
strike through the whole headline:
(setq org-fontify-done-headline t)
(custom-set-faces
'(org-done ((t (:foreground "PaleGreen"
:weight normal
:strike-through t))))
'(org-headline-done
((((class color) (min-colors 16) (background dark))
(:foreground "LightSalmon" :strike-through t)))))
[Change the colors to fit your config/taste]
"
'via Blog this'