From mboxrd@z Thu Jan 1 00:00:00 1970 From: David Belohrad Subject: modify face of org-scheduled-previously depending of priority Date: Thu, 07 Nov 2013 16:43:14 +0100 Message-ID: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:33016) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VeRjx-00070M-Ae for emacs-orgmode@gnu.org; Thu, 07 Nov 2013 10:43:32 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1VeRjq-0006IE-1B for emacs-orgmode@gnu.org; Thu, 07 Nov 2013 10:43:25 -0500 Received: from static-212-101-19-163.adsl.solnet.ch ([212.101.19.163]:53938 helo=server.belohrad.ch) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VeRjp-0006I0-QA for emacs-orgmode@gnu.org; Thu, 07 Nov 2013 10:43:17 -0500 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: Org-mode Dear All, I'm extensively using priorities and scheduling and most of the time I finish with tons of over-scheduled items with A-C priorities. now, I have modified the priority faces such, that lower priorities are 'darker' and hence visually they go sort of out of sight: (setq org-priority-faces '( (?A . (:foreground "DarkOliveGreen1" :weight ultra-bold :slant italic)) (?B . (:foreground "DarkOliveGreen3")) (?C . (:foreground "DarkOliveGreen4")) (?D . (:foreground "chartreuse1" :weight ultra-bold :slant italic)) (?E . (:foreground "chartreuse3")) (?F . (:foreground "chartreuse4")) )) This modifies only faces of priorities. I'd like to modify using the same colors as the the org-scheduled-previously. This would create a sort of visual decay such, that least important things are much darker than most important and hence the important tasks get visible at the first sight. is there any way how I could programmatically assign to org-scheduled-previously the same colors as they are by current priority? many thanks david