From mboxrd@z Thu Jan 1 00:00:00 1970 From: Michael Brand Subject: Re: Deadline Warning Days Faces Date: Wed, 30 May 2012 11:09:51 +0200 Message-ID: References: Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Return-path: Received: from eggs.gnu.org ([208.118.235.92]:35887) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SZeuh-00063Y-9h for emacs-orgmode@gnu.org; Wed, 30 May 2012 05:10:00 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1SZeuf-00063E-I3 for emacs-orgmode@gnu.org; Wed, 30 May 2012 05:09:54 -0400 Received: from mail-we0-f169.google.com ([74.125.82.169]:51515) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SZeuf-000633-91 for emacs-orgmode@gnu.org; Wed, 30 May 2012 05:09:53 -0400 Received: by wefh52 with SMTP id h52so4081545wef.0 for ; Wed, 30 May 2012 02:09:51 -0700 (PDT) In-Reply-To: List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: SW Cc: emacs-orgmode@gnu.org Hi SW On Wed, May 30, 2012 at 10:51 AM, SW wrote: > Apologies if this is a basic question. Org-mode is so huge that it's sometimes > difficult to know where to look. I have several DEADLINE entries set with "-99d" > advanced warning to ensure they appear on my agenda. Entries due in, for > example, 30 or less days are in a different colour to those due in 50 or more > days. What variables control this behaviour? I use #+BEGIN_SRC emacs-lisp (setq org-agenda-deadline-faces '((1.0001 . org-warning) ; due yesterday or before (0.0 . org-upcoming-deadline))) ; due today or later #+END_SRC > Where could I have looked/searched for this? The stuff that are not in the manual I find by going through the variable definitions in the source, in this case org-faces.el. You can also use M-x org-customize to browse. Michael