From mboxrd@z Thu Jan 1 00:00:00 1970 From: Bastien Subject: Re: How do I change font for DONE tasks? Date: Fri, 30 Mar 2007 10:05:11 +0200 Message-ID: <87odmbyx54.fsf@bzg.ath.cx> References: <20070330.110235.248201705.dave@skiddlydee.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Return-path: Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1HXC9T-0001TT-Sc for emacs-orgmode@gnu.org; Fri, 30 Mar 2007 04:08:03 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1HXC9S-0001PX-Em for emacs-orgmode@gnu.org; Fri, 30 Mar 2007 04:08:03 -0400 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1HXC9S-0001PF-8c for emacs-orgmode@gnu.org; Fri, 30 Mar 2007 03:08:02 -0500 Received: from ug-out-1314.google.com ([66.249.92.169]) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1HXC6m-0002wq-3f for emacs-orgmode@gnu.org; Fri, 30 Mar 2007 04:05:16 -0400 Received: by ug-out-1314.google.com with SMTP id j3so899061ugf for ; Fri, 30 Mar 2007 01:05:15 -0700 (PDT) In-Reply-To: <20070330.110235.248201705.dave@skiddlydee.com> (dave@skiddlydee.com's message of "Fri\, 30 Mar 2007 11\:02\:35 +0900 \(JST\)") List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: emacs-orgmode@gnu.org dave@skiddlydee.com 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] -- Bastien