From mboxrd@z Thu Jan 1 00:00:00 1970 From: Christopher Allan Webber Subject: Re: Org Mode TOOD two way sync tool Date: Mon, 25 Jun 2012 09:41:38 -0500 Message-ID: <87bok7qwrh.fsf@grumps.lan> References: <4FE45EF9.8040307@grierwhite.com> <4FE47BA2.8010406@grierwhite.com> <8762agsknr.fsf@grumps.lan> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Return-path: Received: from eggs.gnu.org ([208.118.235.92]:54502) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SjARb-0006Lf-MD for emacs-orgmode@gnu.org; Mon, 25 Jun 2012 10:39:16 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1SjART-0000jE-2L for emacs-orgmode@gnu.org; Mon, 25 Jun 2012 10:39:11 -0400 Received: from li424-160.members.linode.com ([50.116.34.160]:54159 helo=dustycloud.org) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SjARS-0000j5-UW for emacs-orgmode@gnu.org; Mon, 25 Jun 2012 10:39:02 -0400 In-Reply-To: (Sriram Karra's message of "Mon, 25 Jun 2012 19:21:42 +0530") 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: Sriram Karra Cc: emacs-orgmode@gnu.org Sriram Karra writes: > On Sun, Jun 24, 2012 at 10:37 PM, Christopher Allan Webber wrote: > > Hey Aur=C3=A9lien, >=20=20=20=20 > This is great. =C2=A0I formerly worked on something similar: >=20=20=20=20 > http://labs.creativecommons.org/2010/11/10/bridging-public-bugtracker= s-and-local-tasklists/ > > =C2=A0Nice color-theme, there. If you use color-theme.el, can you share i= t? > Otherwise, what's your config? > > -Karra Ah, I've stopped using that theme! But it was a small extension to color-theme-snow. Here it is. :) #+begin_src emacs-lisp ;; This software is free software: you can redistribute it and/or modify ;; it under the terms of the GNU General Public License as published by ;; the Free Software Foundation, either version 3 of the License, or ;; (at your option) any later version. (defun color-theme-snow-better () "Because `color-theme-snow' is so awesome, except for when it isn't." (interactive) (color-theme-snow) (let ((color-theme-is-cumulative t)) (color-theme-install '(color-theme-snow-better ((background-color . "snow2") (background-mode . light) (border-color . "black") (cursor-color . "cadet blue") (foreground-color . "black") (mouse-color . "black")) (emacs-wiki-link-face ((t (:bold t :underline "BlueViolet" :foregrou= nd "BlueViolet")))) (muse-link-face ((t (:bold t :underline "BlueViolet" :foreground "Bl= ueViolet")))) (info-xref ((t (:bold t :foreground "BlueViolet")))) (region ((t (:background "light steel blue")))) (cursor ((t (:background "cadet blue")))) (fringe ((t (:background "white")))) (planner-high-priority-task-face ((t (:foreground "red")))) (planner-medium-priority-task-face ((t (:foreground "green")))) (planner-low-priority-task-face ((t (:foreground "blue")))) (planner-canceled-task-face ((t (:foreground "gray" :strike-through = t)))) (org-todo ((t (:foreground "red2" :bold t)))) (org-done ((t (:foreground "SpringGreen3" :bold t)))) (org-special-keyword ((t (:foreground "sienna")))) (org-column ((t (:background "gray85")))) (erc-input-face ((t (:foreground "brown")))) (erc-notice-face ((t (:foreground "SlateBlue" :bold t)))) (erc-current-nick-face ((t (:foreground "DarkTurquoise" :bold t)))) (erc-prompt-face ((t (:foreground "Black" :bold t :background "light= Blue2")))) (planner-note-headline-face ((t (:bold t :foreground "azure3")))))))) #+end_src