From mboxrd@z Thu Jan 1 00:00:00 1970 From: Simao M Subject: Re: Re: org-mode color schemes with white or light background and black foregroung Date: Wed, 5 May 2010 17:00:33 +0100 Message-ID: References: <87aasfo0ns.fsf@mundaneum.com> Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Return-path: Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1O9hX7-0003Ir-UN for emacs-orgmode@gnu.org; Wed, 05 May 2010 12:33:14 -0400 Received: from [140.186.70.92] (port=51794 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1O9h2R-0001N9-Me for emacs-orgmode@gnu.org; Wed, 05 May 2010 12:04:40 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.69) (envelope-from ) id 1O9h1Y-00009L-AJ for emacs-orgmode@gnu.org; Wed, 05 May 2010 12:00:42 -0400 Received: from fg-out-1718.google.com ([72.14.220.152]:46020) by eggs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1O9h1X-00008T-QF for emacs-orgmode@gnu.org; Wed, 05 May 2010 12:00:36 -0400 Received: by fg-out-1718.google.com with SMTP id 22so34768fge.12 for ; Wed, 05 May 2010 09:00:33 -0700 (PDT) In-Reply-To: <87aasfo0ns.fsf@mundaneum.com> 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: =?ISO-8859-1?Q?S=E9bastien_Vauban?= Cc: emacs-orgmode@gnu.org Screenshot please? :) 2010/5/4 S=E9bastien Vauban : > Hi Daniel, > > Daniel Martins wrote: >> Some time ago Carsten sent a file with with his colours patterns with bl= ack >> background. >> >> I would like to know if someone has a similar pattern when using black >> foregroung and a lighter backgroung (not necessarily white). >> >> Could you share it with us? > > Sure. Here is mine. > > --8<---------------cut here---------------start------------->8--- > ;;; color-theme-sva.el --- my color theme > > ;; Copyright (C) 2003-2010 Sebastien Vauban > ;; Time-stamp: <2010-05-04 Tue 10:40 sva on mundaneum> > > ;; Author: Sebastien Vauban > ;; Keywords: emacs, color theme, config > > ;; $Revision: 3731 $ > ;; $Date: 2010-04-28 14:28:34 +0200 (Wed, 28 Apr 2010) $ > > ;; This file is NOT part of GNU Emacs. > > ;; This file 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 2 of > ;; the License, or (at your option) any later version. > > ;; This file is distributed in the hope that it will be > ;; useful, but WITHOUT ANY WARRANTY; without even the implied > ;; warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR > ;; PURPOSE. =A0See the GNU General Public License for more details. > > ;; You should have received a copy of the GNU General Public > ;; License along with this file; if not, write to the Free > ;; Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, > ;; MA 02111-1307, USA. > > ;;; Code: > > (require 'color-theme) > > (defun color-theme-sva () > =A0"Color theme by Sebastien Vauban." > =A0(interactive) > =A0(color-theme-install > =A0 '(color-theme-sva > =A0 =A0 ;; frame parameters > =A0 =A0 ((background-color . "white") > =A0 =A0 =A0(background-mode . light) > =A0 =A0 =A0(border-color . "black") > =A0 =A0 =A0(cursor-color . "rgb:15/FF/00") > =A0 =A0 =A0(foreground-color . "black") > =A0 =A0 =A0(mouse-color . "black")) > > =A0 =A0 ;; faces > =A0 =A0 (default ((t (nil)))) > =A0 =A0 (bold ((t (:weight bold)))) > =A0 =A0 (bold-italic ((t (:italic t :slant italic :weight bold)))) > =A0 =A0 (italic ((t (:italic t :slant italic)))) > =A0 =A0 (underline ((t (:underline t)))) > > =A0 =A0 (highlight ((t (:background "rgb:FF/FF/A0")))) =A0;; yellow > =A0 =A0 ;; used by hlt package of Drew Adams > > =A0 =A0 (recover-this-file ((t (:background "red")))) > > =A0 =A0 ;; non-breaking space > =A0 =A0 (nobreak-space ((t (:background "rgb:C6/C3/C6" :foreground "green= ")))) > > =A0 =A0 ;; bbdb > =A0 =A0 (bbdb-company ((t (:foreground "steel blue" :italic t)))) > =A0 =A0 (bbdb-field-name ((t (:foreground "steel blue" :weight bold)))) > =A0 =A0 (bbdb-field-value ((t (:foreground "steel blue")))) > =A0 =A0 (bbdb-name ((t (:foreground "rgb:FF/66/33" :underline t)))) > > =A0 =A0 ;; browse-kill-ring > =A0 =A0 (browse-kill-ring-separator-face ((t (:foreground "slate gray" :w= eight bold)))) > > =A0 =A0 ;; calendar > =A0 =A0 (calendar-today-face ((t (:weight bold :background "yellow")))) > =A0 =A0 (diary-face ((t (:foreground "dark cyan")))) > =A0 =A0 (holiday-face ((t (:foreground "red")))) > > =A0 =A0 ;; column-marker > =A0 =A0 (column-marker-1-face ((t (:background "DarkSeaGreen1")))) > =A0 =A0 (column-marker-2-face ((t (:background "LemonChiffon")))) > =A0 =A0 (column-marker-3-face ((t (:background "MistyRose")))) > > =A0 =A0 (comint-highlight-input ((t (:weight bold)))) > =A0 =A0 (comint-highlight-prompt ((t (:foreground "blue")))) > > =A0 =A0 ;; custom > =A0 =A0 (custom-saved-face ((t (:underline t)))) > =A0 =A0 (custom-state-face ((t (:foreground "green4")))) > =A0 =A0 (custom-button-pressed-face ((t (:background "lightgray" > =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 = =A0:foreground "black" > =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 = =A0:box (:line-width 2 > =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 = =A0 =A0 =A0 =A0:style pressed-button))))) > =A0 =A0 (custom-modified-face ((t (:background "blue" :foreground "white"= )))) > =A0 =A0 (custom-invalid-face ((t (:background "red" :foreground "yellow")= ))) > =A0 =A0 (custom-set-face ((t (:background "white" :foreground "blue")))) > =A0 =A0 (custom-changed-face ((t (:background "blue" :foreground "white")= ))) > =A0 =A0 (custom-rogue-face ((t (:background "black" :foreground "pink")))= ) > =A0 =A0 (custom-face-tag-face ((t (:underline t)))) > =A0 =A0 (custom-variable-button-face ((t (:underline t :weight bold)))) > > =A0 =A0 ;; cvs > =A0 =A0 (cvs-filename-face ((t (:foreground "blue4")))) > =A0 =A0 (cvs-handled-face ((t (:foreground "pink")))) > =A0 =A0 (cvs-header-face ((t (:foreground "blue4" :weight bold)))) > =A0 =A0 (cvs-marked-face ((t (:foreground "green3" :weight bold)))) > =A0 =A0 (cvs-msg-face ((t (:italic t :foreground "gray55")))) > =A0 =A0 (cvs-need-action-face ((t (:foreground "orange")))) > =A0 =A0 (cvs-unknown-face ((t (:foreground "red")))) > > =A0 =A0 ;; subversion > =A0 =A0 (svn-status-marked-face ((t (:foreground "green3" :weight bold)))= ) > =A0 =A0 (svn-status-marked-popup-face ((t (:foreground "green3" :weight b= old)))) > =A0 =A0 (svn-status-update-available-face ((t (:foreground "orange")))) > =A0 =A0 (svn-status-directory-face ((t (:background "rgb:FF/F5/8F" > =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 := foreground "blue" :weight bold)))) > =A0 =A0 (svn-status-filename-face ((t (:foreground "magenta3")))) > =A0 =A0 (svn-status-symlink-face =A0((t (:foreground "cyan")))) > =A0 =A0 (svn-status-locked-face ((t (:foreground "red" :weight bold)))) > =A0 =A0 (svn-status-switched-face ((t (:italic t :foreground "gray55")))) > > =A0 =A0 ;; diff > =A0 =A0 (diff-added ((t (:background "rgb:DD/FF/DD" :foreground "DarkGree= n")))) > =A0 =A0 (diff-hunk-header ((t (:background "rgb:EA/F2/F5" :foreground "rg= b:99/99/99")))) > =A0 =A0 (diff-index ((t (:background "rgb:EA/F2/F5" :foreground "rgb:99/9= 9/99")))) > =A0 =A0 (diff-indicator-added ((t (:background "rgb:AA/FF/AA")))) > =A0 =A0 (diff-indicator-removed ((t (:background "rgb:FF/AA/AA")))) > =A0 =A0 (diff-removed ((t (:background "rgb:FF/DD/DD" :foreground "DarkMa= genta")))) > > =A0 =A0 ;; dircolors > =A0 =A0 (dircolors-face-asm ((t (:foreground "blue3")))) > =A0 =A0 (dircolors-face-backup ((t (:foreground "blue3")))) > =A0 =A0 (dircolors-face-compress ((t (:foreground "red")))) > =A0 =A0 (dircolors-face-dir ((t (:foreground "blue" :weight bold)))) > =A0 =A0 (dircolors-face-doc ((t (:foreground "gold")))) > =A0 =A0 (dircolors-face-dos ((t (:foreground "green3")))) > =A0 =A0 (dircolors-face-emacs ((t (:foreground "turquoise3")))) > =A0 =A0 (dircolors-face-html ((t (:foreground "gold")))) > =A0 =A0 (dircolors-face-img ((t (:foreground "magenta3")))) > =A0 =A0 (dircolors-face-lang ((t (:foreground "turquoise3")))) > =A0 =A0 (dircolors-face-lang-interface ((t (:foreground "turquoise3")))) > =A0 =A0 (dircolors-face-make ((t (:foreground "green3")))) > =A0 =A0 (dircolors-face-objet ((t (:foreground "blue3")))) > =A0 =A0 (dircolors-face-package ((t (:foreground "red")))) > =A0 =A0 (dircolors-face-paddb ((t (:foreground "blue3")))) > =A0 =A0 (dircolors-face-ps ((t (:foreground "gold")))) > =A0 =A0 (dircolors-face-sound ((t (:foreground "magenta3")))) > =A0 =A0 (dircolors-face-tar ((t (:foreground "red")))) > =A0 =A0 (dircolors-face-yacc ((t (:foreground "turquoise3")))) > > =A0 =A0 ;; dired > =A0 =A0 (dired-face-boring ((t (:foreground "Gray65")))) > =A0 =A0 (dired-face-directory ((t (:weight bold)))) > =A0 =A0 (dired-face-executable ((t (:foreground "SeaGreen")))) > =A0 =A0 (dired-face-flagged ((t (:background "LightSlateGray")))) > =A0 =A0 (dired-face-header ((t (:background "gray75" :foreground "black")= ))) > =A0 =A0 (dired-face-marked ((t (:background "PaleVioletRed")))) > =A0 =A0 (dired-face-permissions ((t (:background "gray75" :foreground "bl= ack")))) > =A0 =A0 (dired-face-setuid ((t (:foreground "Red")))) > =A0 =A0 (dired-face-socket ((t (:foreground "magenta")))) > =A0 =A0 (dired-face-symlink ((t (:foreground "cyan")))) > > =A0 =A0 ;; dired+ > =A0 =A0 (diredp-date-time ((t (:foreground "rgb:33/64/4E")))) > =A0 =A0 (diredp-dir-heading ((t (:background "rgb:FF/F5/8F" :foreground "= blue" > =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 = =A0 =A0 =A0:weight bold)))) > =A0 =A0 (diredp-dir-priv ((t (:background "rgb:FF/F5/8F" :foreground "blu= e" > =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 = =A0 :weight bold)))) > =A0 =A0 (diredp-file-name ((t (:foreground "black")))) > =A0 =A0 (diredp-file-suffix ((t (:foreground "rgb:7B/46/8E")))) > =A0 =A0 (diredp-flag-mark-line ((t (:foreground "red" :weight bold)))) > > =A0 =A0 ;; emacs wiki > =A0 =A0 (emacs-wiki-bad-link-face ((t (:foreground "red" :weight bold)))) > =A0 =A0 (emacs-wiki-header-1 ((t (:weight bold :height 1.4)))) > =A0 =A0 (emacs-wiki-header-2 ((t (:weight bold :height 1.3)))) > =A0 =A0 (emacs-wiki-header-3 ((t (:height 1.2)))) > =A0 =A0 (emacs-wiki-header-4 ((t (:height 1.1)))) > =A0 =A0 (emacs-wiki-header-5 ((t (:height 1.0)))) > =A0 =A0 (emacs-wiki-header-6 ((t (:height 0.9)))) > =A0 =A0 (emacs-wiki-link-face ((t (:foreground "blue" :underline t)))) > > =A0 =A0 ;; flypell > =A0 =A0 (flyspell-duplicate-face ((t (:foreground "Gold3" :underline t > =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 :weig= ht bold)))) > =A0 =A0 (flyspell-incorrect-face ((t (:foreground "red" :underline t > =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 :weig= ht bold)))) > > =A0 =A0 ;; TeX > =A0 =A0 (tex-verbatim ((t (:foreground "tan1")))) > > =A0 =A0 ;; LaTeX > =A0 =A0 (font-latex-bold-face ((t (:foreground "medium sea green" :weight= bold)))) > =A0 =A0 (font-latex-math-face ((t (:foreground "black")))) > =A0 =A0 (font-latex-sedate-face ((t (:foreground "gray45")))) > =A0 =A0 (font-latex-verbatim-face ((t (:foreground "tan1")))) > =A0 =A0 (font-latex-sectioning-1-face ((t (:foreground "cornflower blue" = :weight bold :height 2.7 :family "Arial")))) > =A0 =A0 (font-latex-sectioning-2-face ((t (:foreground "cornflower blue" = :weight bold :height 1.8 :family "Arial")))) > =A0 =A0 (font-latex-sectioning-3-face ((t (:foreground "LimeGreen" :weigh= t bold :height 1.6 :family "Arial")))) > =A0 =A0 (font-latex-sectioning-4-face ((t (:foreground "orange" :weight b= old :height 1.3 :family "Arial")))) > =A0 =A0 (font-latex-sectioning-5-face ((t (:foreground "IndianRed1")))) > > =A0 =A0 ;; > =A0 =A0 (font-lock-comment-face ((t (:foreground "red")))) > =A0 =A0 (font-lock-constant-face ((t (:foreground "dark cyan")))) > =A0;; (font-lock-doc-string-face ((t (:foreground "yellow")))) > =A0 =A0 (font-lock-function-name-face ((t (:foreground "blue")))) > =A0 =A0 (font-lock-keyword-face ((t (:foreground "purple1")))) > =A0;; (font-lock-preprocessor-face ((t (:foreground "yellow")))) > =A0 =A0 (font-lock-reference-face ((t (:foreground "dark cyan")))) > =A0 =A0 (font-lock-string-face ((t (:foreground "green4")))) > =A0 =A0 (font-lock-type-face ((t (:foreground "forest green")))) > =A0 =A0 (font-lock-variable-name-face ((t (:foreground "magenta")))) > =A0 =A0 (font-lock-warning-face ((t (:weight bold :foreground "red")))) > > =A0 =A0 (pesche-space ((t (:background "LemonChiffon")))) > =A0 =A0 (pesche-tab ((t (:background "Gold")))) > > =A0 =A0 (fringe ((t (:foreground "rgb:AF/B7/BA" :background "rgb:DD/EE/FF= ")))) > =A0 =A0 (linum ((t (:foreground "rgb:AF/B7/BA" :background "rgb:DD/EE/FF"= )))) > > =A0 =A0 (gnus-splash-face ((t (:foreground "gold")))) > > =A0 =A0 ;; Gnus group buffer > =A0 =A0 (gnus-group-mail-1-empty-face ((t (:foreground "rgb:50/50/B0")))) > =A0 =A0 (gnus-group-mail-1-face ((t (:foreground "rgb:FF/50/B0" :weight b= old)))) > =A0 =A0 (gnus-group-mail-2-empty-face ((t (:foreground "rgb:66/00/66")))) > =A0 =A0 (gnus-group-mail-2-face ((t (:foreground "rgb:FF/00/66" :weight b= old)))) > =A0 =A0 (gnus-group-mail-3-empty-face ((t (:foreground "rgb:00/77/77")))) > =A0 =A0 (gnus-group-mail-3-face ((t (:foreground "rgb:FF/77/77" :weight b= old)))) > > =A0 =A0 (gnus-group-news-1-empty-face ((t (:foreground "rgb:50/50/B0")))) > =A0 =A0 (gnus-group-news-1-face ((t (:foreground "rgb:FF/50/B0" :weight b= old)))) > =A0 =A0 (gnus-group-news-2-empty-face ((t (:foreground "rgb:66/00/66")))) > =A0 =A0 (gnus-group-news-2-face ((t (:foreground "rgb:FF/00/66" :weight b= old)))) > =A0 =A0 (gnus-group-news-3-empty-face ((t (:foreground "rgb:00/77/77")))) > =A0 =A0 (gnus-group-news-3-face ((t (:foreground "rgb:FF/77/77" :weight b= old)))) > =A0 =A0 (gnus-group-news-4-empty-face ((t (:foreground "rgb:99/00/00")))) > =A0 =A0 (gnus-group-news-4-face ((t (:foreground "rgb:FF/00/00" :weight b= old)))) > =A0 =A0 (gnus-group-news-5-empty-face ((t (:foreground "rgb:00/00/99")))) > =A0 =A0 (gnus-group-news-5-face ((t (:foreground "rgb:FF/00/99" :weight b= old)))) > =A0 =A0 (gnus-group-news-6-empty-face ((t (:foreground "rgb:BB/66/00")))) > =A0 =A0 (gnus-group-news-6-face ((t (:foreground "rgb:FF/66/00" :weight b= old)))) > > =A0 =A0 ;; Gnus summary buffer > =A0 =A0 (hl-line ((t (:background "rgb:D4/EA/FF")))) =A0;; light blue > =A0 =A0 (gnus-summary-selected-face ((t (:foreground "rgb:FF/66/33" :weig= ht bold)))) > =A0 =A0 (gnus-summary-high-unread-face ((t (:foreground "blue" :weight bo= ld)))) > =A0 =A0 (gnus-summary-high-read-face ((t (:foreground "rgb:80/00/80" :wei= ght bold)))) > =A0 =A0 (gnus-summary-high-ticked-face ((t (:foreground "hot pink" :weigh= t bold)))) > =A0 =A0 (gnus-summary-high-ancient-face ((t (:foreground "rgb:77/77/99" := weight bold)))) > =A0 =A0 (gnus-summary-normal-unread-face ((t (:foreground "blue")))) > =A0 =A0 (gnus-summary-normal-read-face ((t (:foreground "rgb:80/00/80")))= ) > =A0 =A0 (gnus-summary-normal-ticked-face ((t (:foreground "hot pink")))) > =A0 =A0 (gnus-summary-normal-ancient-face ((t (:foreground "rgb:77/77/99"= )))) > =A0 =A0 (gnus-summary-low-unread-face ((t (:low t :foreground "blue" :ita= lic t)))) > =A0 =A0 (gnus-summary-low-read-face ((t (:low t :foreground "rgb:80/00/80= " :italic t)))) > =A0 =A0 (gnus-summary-low-ticked-face ((t (:low t :foreground "hot pink" = :italic t)))) > =A0 =A0 (gnus-summary-low-ancient-face ((t (:low t :foreground "rgb:77/77= /99" :italic t)))) > =A0 =A0 (gnus-summary-cancelled-face ((t (:italic t :foreground "gray55" = :strike-through t)))) > > =A0 =A0 ;; Gnus article buffer > =A0 =A0 (gnus-header-name-face ((t (:foreground "rgb:33/99/CC" :weight bo= ld :family "Arial")))) > =A0 =A0 (gnus-header-from-face ((t (:foreground "blue" :family "Arial")))= ) > =A0 =A0 (gnus-header-subject-face ((t (:foreground "rgb:FF/66/33" :weight= bold)))) > =A0 =A0 (gnus-header-newsgroups-face ((t (:foreground "rgb:33/99/CC" :fam= ily "Arial")))) > =A0 =A0 (gnus-header-content-face ((t (:foreground "rgb:33/99/CC" :family= "Arial")))) > =A0 =A0 (gnus-cite-attribution-face ((t (:foreground "rgb:50/50/B0")))) > =A0 =A0 (gnus-cite-face-1 ((t (:foreground "rgb:50/50/B0")))) > =A0 =A0 (gnus-cite-face-2 ((t (:foreground "rgb:66/00/66")))) > =A0 =A0 (gnus-cite-face-3 ((t (:foreground "rgb:00/77/77")))) > =A0 =A0 (gnus-cite-face-4 ((t (:foreground "rgb:99/00/00")))) > =A0 =A0 (gnus-cite-face-5 ((t (:foreground "rgb:00/00/99")))) > =A0 =A0 (gnus-cite-face-6 ((t (:foreground "rgb:BB/66/00")))) > =A0 =A0 (gnus-cite-face-7 ((t (:foreground "rgb:50/50/B0")))) > =A0 =A0 (gnus-cite-face-8 ((t (:foreground "rgb:66/00/66")))) > =A0 =A0 (gnus-cite-face-9 ((t (:foreground "rgb:00/77/77")))) > =A0 =A0 (gnus-cite-face-10 ((t (:foreground "rgb:99/00/00")))) > =A0 =A0 (gnus-signature-face ((t (:foreground "rgb:7F/7F/7F")))) > =A0 =A0 (gnus-emphasis-bold ((t (:weight bold)))) > > =A0 =A0 (widget-button-face ((t (:weight bold)))) > =A0 =A0 (widget-button-pressed-face ((t (:foreground "red")))) > =A0 =A0 (widget-documentation-face ((t (:foreground "green4")))) > =A0 =A0 (widget-field-face ((t (:background "gray85")))) > =A0 =A0 (widget-inactive-face ((t (:foreground "dim gray")))) > =A0 =A0 (widget-single-line-field-face ((t (:background "gray85")))) > ;; =A0 =A0 (widget-mouse-face . highlight) > > =A0 =A0 ;; when replying > =A0 =A0 (message-header-name-face ((t (:foreground "rgb:33/99/CC" :weight= bold > =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0:f= amily "Arial")))) > =A0 =A0 (message-header-to-face ((t (:foreground "blue" :family "Arial"))= )) > =A0 =A0 (message-header-cc-face ((t (:foreground "blue" :family "Arial"))= )) > =A0 =A0 (message-header-subject-face ((t (:foreground "rgb:FF/66/33" :wei= ght bold)))) > =A0 =A0 (message-header-newsgroups-face ((t (:foreground "rgb:33/99/CC" > =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 = =A0 =A0 =A0:family "Arial")))) > =A0 =A0 (message-header-xheader-face ((t (:foreground "red")))) > =A0 =A0 (message-header-other-face ((t (:foreground "rgb:33/99/CC" > =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 := family "Arial")))) > =A0 =A0 (message-separator-face ((t (:foreground "red" :weight bold :fami= ly "Arial")))) > =A0 =A0 (message-cited-text-face ((t (:foreground "rgb:50/50/B0")))) > =A0 =A0 (message-mml-face ((t (:foreground "forest green")))) > > =A0 =A0 ;; Gnus/Message > =A0 =A0 (gnus-emphasis-highlight-words ((t (:background "black" > =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 = =A0 =A0 :foreground "yellow")))) > =A0 =A0 (gnus-picon-face ((t (:background "white" :foreground "yellow")))= ) > =A0 =A0 (gnus-picon-xbm-face ((t (:background "white" :foreground "yellow= ")))) > =A0 =A0 (gnus-x-face ((t (:background "white" :foreground "black")))) > > =A0 =A0 (html-helper-bold-face ((t (:foreground "black" :weight bold)))) > =A0 =A0 (html-helper-italic-face ((t (:foreground "black" :slant italic))= )) > =A0 =A0 (html-helper-underline-face ((t (:foreground "black" :underline t= )))) > =A0 =A0 (html-tag-face ((t (:foreground "blue")))) > > =A0 =A0 (nxml-attribute-local-name-face ((t (:foreground "magenta")))) > =A0 =A0 (nxml-attribute-value-delimiter-face ((t (:foreground "green4")))= ) > =A0 =A0 (nxml-attribute-value-face ((t (:foreground "green4")))) > =A0 =A0 (nxml-comment-content-face =A0((t (:foreground "red" :slant itali= c)))) > =A0 =A0 (nxml-comment-delimiter-face ((t (:foreground "red")))) > =A0 =A0 (nxml-element-local-name-face ((t (:foreground "blue")))) > =A0 =A0 (nxml-processing-instruction-delimiter-face ((t (:foreground "pur= ple1")))) > =A0 =A0 (nxml-processing-instruction-target-face ((t (:foreground "purple= 1")))) > =A0 =A0 (nxml-tag-delimiter-face ((t (:foreground "blue")))) > =A0 =A0 (nxml-tag-slash-face ((t (:foreground "blue")))) > > =A0 =A0 (anything-header ((t (:family "Sans Serif" :foreground "white" :w= eight bold :height 1.3 :background "rgb:66/66/99")))) > > =A0 =A0 ;; Info > =A0 =A0 (info-header-node ((t (:foreground "orange" :underline t)))) ; no= des in header > =A0 =A0 (info-header-xref ((t (:foreground "dodger blue" :underline t))))= ; cross references in header > =A0 =A0 (info-menu-header ((t (:foreground "red" :underline t)))) ; menu = titles (headers) -- major topics > =A0 =A0 (info-menu-star ((t (:foreground "black")))) ; every 3rd menu ite= m > =A0 =A0 (info-node ((t (:foreground "blue" :underline t)))) ; node names > =A0 =A0 (info-xref ((t (:foreground "blue" :weight bold :underline t)))) = ; unvisited cross-references > =A0 =A0 (info-xref-visited ((t (:foreground "magenta4" :weight bold)))) ;= previously visited cross-references > > =A0 =A0 ;; info+ > =A0 =A0 (info-quoted-name ((t (:foreground "dark cyan")))) ; quoted names= (`...') > =A0 =A0 (info-string ((t (:foreground "green4")))) ; strings ("...") > ;;; =A0(info-menu ()) ; menu items > ;;; =A0(info-file ()) ; file heading labels > > ;;; =A0 =A0 =A0And for reference items in the Elisp manual, > ;;; =A0 =A0 =A0you can customize these faces: > ;;; =A0 =A0 =A0 =A0 =A0info-elisp-user-option-ref-item =A0- label `User O= ption' > ;;; =A0 =A0 =A0 =A0 =A0info-elisp-variable-ref-item =A0 =A0 - label `Vari= able' > ;;; =A0 =A0 =A0 =A0 =A0info-elisp-command-ref-item =A0 =A0 =A0- label `Co= mmand' > ;;; =A0 =A0 =A0 =A0 =A0info-elisp-function-ref-item =A0 =A0 - label `Func= tion' > ;;; =A0 =A0 =A0 =A0 =A0info-elisp-macro-ref-item =A0 =A0 =A0 =A0- label `= Macro' > ;;; =A0 =A0 =A0 =A0 =A0info-elisp-special-form-ref-item - label `Special = Form' > ;;; =A0 =A0 =A0 =A0 =A0info-elisp-syntax-class-item =A0 =A0 - label `Synt= ax Class' > ;;; =A0 =A0 =A0 =A0 =A0info-elisp-reference-item =A0 =A0 =A0 =A0- other r= eference labels > > =A0 =A0 ;; highlighting matches > =A0 =A0 (match ((t (:background "yellow" :foreground "rgb:EE/66/00" :weig= ht bold)))) > =A0 =A0 (isearch ((t (:background "yellow" :foreground "rgb:EE/66/00" :we= ight bold)))) > =A0 =A0 (isearch-lazy-highlight-face ((t (:background "rgb:CC/FF/FF" > =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 = =A0 :foreground "blue" > =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 = =A0 :weight bold)))) ;; for GNU Emacs > =A0 =A0 (isearch-secondary ((t (:background "rgb:CC/FF/FF" > =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 :foreground "blue= " > =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 :weight bold)))) = ;; for XEmacs > > =A0 =A0 ;; make > =A0 =A0 (makefile-space-face ((t (:background "hotpink")))) > > =A0 =A0 ;; GNU Emacs mode-line > =A0 =A0 (mode-line ((t (:background "rgb:00/97/CB" :foreground "rgb:FF/C7= /7F" > =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 :box (:line-width 1 :color "rgb:9= E/AB/B6") > =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 :weight normal)))) > =A0 =A0 (mode-line-inactive ((t (:background "rgb:00/63/82" :foreground "= rgb:61/7A/82" > =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 :box (:line-width= 1 :color "rgb:9E/AB/B6") > =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 :weight normal)))= ) > =A0 =A0 (mode-line-highlight ((t (:foreground "yellow")))) > =A0 =A0 (mode-line-buffer-id ((t (:foreground "white")))) > > =A0 =A0 ;; XEmacs modeline > =A0 =A0 (modeline-mousable ((t (:foreground "firebrick")))) =A0; major-mo= de string > =A0 =A0 (modeline-mousable-minor-mode ((t (:foreground "green4")))) > > =A0 =A0 ;; Muse > =A0 =A0 (muse-verbatim ((t (:foreground "tan1")))) > =A0 =A0 (muse-header-1 ((t (:foreground "red")))) =A0; blue4 > > =A0 =A0 (muse-header-2 ((t (:inherit variable-pitch :foreground "LightBlu= e2" :weight bold :height 1.3)))) > =A0 =A0 (muse-header-3 ((t (:inherit variable-pitch :foreground "LightSky= Blue2" :height 1.2)))) > =A0 =A0 (muse-header-4 ((t (:inherit variable-pitch :foreground "LightSky= Blue3" :slant italic :height 1.1)))) > =A0 =A0 (muse-header-5 ((t (:inherit variable-pitch :foreground "LightSky= Blue3" :height 1.0)))) > > =A0 =A0 ;; org > =A0 =A0 (org-agenda-date ((t (:background "LightSkyBlue")))) > =A0 =A0 (org-agenda-date-today ((t (:background "yellow" :slant normal :w= eight bold)))) > =A0 =A0 (org-agenda-date-weekend ((t (:foreground "white" :background "bl= ue4" :weight bold)))) > =A0 =A0 (org-code ((t (:foreground "blue")))) > > =A0 =A0 (org-column ((t (:background "gold" :height 80 :family "Consolas"= )))) > =A0 =A0 (org-agenda-column-dateline ((t (:background "deep sky blue" :hei= ght 80 :family "Consolas")))) > > =A0 =A0 (org-done ((t (:foreground "green3" :weight bold :strike-through = t)))) > =A0 =A0 (org-latex-and-export-specials ((t (:foreground "tan1")))) > =A0 =A0 (org-level-1 ((t (:foreground "cornflower blue" :weight bold :hei= ght 1.8 :family "Arial")))) > =A0 =A0 (org-level-2 ((t (:foreground "LimeGreen" :weight bold :height 1.= 6 :family "Arial")))) > =A0 =A0 (org-level-3 ((t (:foreground "orange" :weight bold :height 1.3 := family "Arial")))) > =A0 =A0 (org-level-4 ((t (:foreground "IndianRed1")))) > =A0 =A0 (org-level-5 ((t (:foreground "cornflower blue")))) > =A0 =A0 (org-level-6 ((t (:foreground "LimeGreen")))) > =A0 =A0 (org-level-7 ((t (:foreground "orange")))) > =A0 =A0 (org-level-8 ((t (:foreground "IndianRed1")))) > =A0 =A0 (org-headline-done ((t (:foreground "rgb:AA/AA/AA" :weight bold := height 1.3 :family "Arial" :strike-through t)))) > =A0 =A0 (org-agenda-diary ((t (:foreground "DarkGreen" :background "light= blue" :weight bold)))) > =A0 =A0 (org-scheduled ((t (:foreground "blue" :weight bold)))) > =A0 =A0 (org-scheduled-today ((t (:foreground "DarkGreen" :weight bold)))= ) > =A0 =A0 (org-scheduled-previously ((t (:foreground "red" :weight bold)))) > =A0 =A0 (org-upcoming-deadline ((t (:foreground "white" :background "rgb:= E9/A3/6A" :weight bold)))) > =A0 =A0 (org-warning ((t (:foreground "white" :background "rgb:D8/00/00" = :weight bold)))) > > =A0 =A0 (sva-org-deadline-yesterday ((t (:foreground "white" :background = "rgb:D8/00/00" :weight bold)))) > =A0 =A0 (sva-org-deadline-today ((t (:foreground "white" :background "rgb= :E9/A3/6A" :weight bold)))) > =A0 =A0 (sva-org-deadline-tomorrow ((t (:foreground "black" :background "= #B4F1B3" :weight bold)))) > =A0 =A0 (sva-org-deadline-later ((t (:foreground "black" :background "#AA= CAFC")))) > > =A0 =A0 (org-special-keyword ((t (:foreground "red")))) > =A0 =A0 (org-tag ((t (:foreground "rgb:81/6A/7D" :background "rgb:F7/B8/D= E" :italic t)))) > =A0 =A0 (org-time-grid ((t (:foreground "gray60")))) > =A0 =A0 (org-mode-line-clock ((t (:background "rgb:FF/90/00" :foreground = "white")))) ; orange > =A0 =A0 (org-mode-line-clock-overrun ((t (:background "red" :foreground "= white")))) > > =A0 =A0 (org-dim ((t (:foreground "rgb:AA/AA/AA")))) > =A0 =A0 (org-document-title ((t (:foreground "blue" :weight bold)))) > =A0 =A0 (org-document-info-keyword ((t (:foreground "rgb:AA/AA/AA")))) > =A0 =A0 (org-document-info ((t (:foreground "blue4")))) > > =A0 =A0 ;; non-standard faces > =A0 =A0 (sva-org-todo-kwd-face ((t (:foreground "gold" :background "tomat= o" :weight bold)))) > =A0 =A0 (sva-org-someday-kwd-face ((t (:foreground "gold" :background "to= mato" :weight bold)))) > =A0 =A0 (sva-org-started-kwd-face ((t (:foreground "cyan" :background "st= eelblue" :weight bold)))) > =A0 =A0 (sva-org-waiting-kwd-face ((t (:foreground "gold" :background "ma= genta2" :weight bold)))) > =A0 =A0 (sva-org-delegated-kwd-face ((t (:foreground "gold" :background "= magenta2" :weight bold)))) > =A0 =A0 (sva-org-deferred-kwd-face ((t (:foreground "gold" :background "m= agenta2" :weight bold)))) > =A0 =A0 (sva-org-done-kwd-face ((t (:foreground "rgb:AA/AA/AA" :backgroun= d "black" :weight bold)))) > =A0 =A0 (sva-org-canceled-kwd-face ((t (:foreground "rgb:AA/AA/AA" :backg= round "black" :weight bold)))) > > =A0 =A0 (sva-org-quote-kwd-face ((t (:foreground "yellow" :background "re= d" :weight bold)))) > =A0 =A0 (sva-org-quoted-kwd-face ((t (:foreground "yellow" :background "r= ed" :weight bold)))) > =A0 =A0 (sva-org-approved-kwd-face ((t (:foreground "gray50" :background = "gray30" :weight bold)))) > =A0 =A0 (sva-org-expired-kwd-face ((t (:foreground "gray50" :background "= gray30" :weight bold)))) > =A0 =A0 (sva-org-rejected-kwd-face ((t (:foreground "gray50" :background = "gray30" :weight bold)))) > > =A0 =A0 (sva-org-openpo-kwd-face ((t (:foreground "cyan" :background "ste= elblue" :weight bold)))) > =A0 =A0 (sva-org-closedpo-kwd-face ((t (:foreground "gray50" :background = "gray30" :weight bold)))) > > =A0 =A0 ;; pretty print ^L > =A0 =A0 (pp^L-highlight ((t (:inherit shadow :strike-through t)))) > > =A0 =A0 ;; selection > =A0 =A0 (region ((t (:background "seashell2")))) ;; for GNU Emacs > =A0 =A0 (zmacs-region ((t (:background "seashell2")))) ;; for XEmacs > =A0 =A0 (secondary-selection ((t (:background "paleturquoise")))) > > =A0 =A0 ;; for `cat < =A0 =A0 (sh-heredoc ((t (:foreground "tan1")))) > > =A0 =A0 ;; parentheses > =A0 =A0 (paren-face-match ((t (:background "chartreuse")))) > =A0 =A0 (paren-face-mismatch ((t (:background "purple" :foreground "white= " > =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 :weight bold)= ))) > =A0 =A0 (paren-face-no-match ((t (:background "purple" :foreground "white= " > =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 :weight bold)= ))) > =A0 =A0 (show-paren-match-face ((t (:background "chartreuse")))) > =A0 =A0 (show-paren-mismatch-face ((t (:background "purple" :foreground "= white" > =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0:w= eight bold)))) > > =A0 =A0 ;; shell > =A0 =A0 (shell-prompt-face ((t (:weight bold :foreground "yellow")))) > =A0 =A0 (shell-option-face ((t (:foreground "forest green")))) > =A0 =A0 (shell-output-face ((t (:foreground "black")))) > =A0 =A0 (shell-output-2-face ((t (:foreground "blue")))) > =A0 =A0 (shell-output-3-face ((t (:foreground "purple")))) > > =A0 =A0 ;; speedbar > =A0 =A0 (speedbar-button-face ((t (:foreground "green4")))) > =A0 =A0 (speedbar-directory-face ((t (:foreground "blue4")))) > =A0 =A0 (speedbar-file-face ((t (:foreground "cyan4")))) > =A0 =A0 (speedbar-highlight-face ((t (:background "green")))) > =A0 =A0 (speedbar-selected-face ((t (:underline t :foreground "red")))) > =A0 =A0 (speedbar-tag-face ((t (:foreground "brown")))) > > =A0 =A0 ;; tool-bar > =A0 =A0 (tool-bar ((t (:background "gray75" :foreground "black" :box > =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0(:line-wid= th 1 :style released-button))))) > > =A0 =A0 ;; tooltip > =A0 =A0 (tooltip ((t (:background "lightyellow" :foreground "black")))) > > =A0 =A0 ;; show trailing whitespace > =A0 =A0 (trailing-whitespace ((t (:background "LemonChiffon")))) > > =A0 =A0 ;; mouseless browsing > =A0 =A0 (w3m-link-numbering ((t (:foreground "rgb:B4/C7/EB")))) > > =A0 =A0 ;; w3m > =A0 =A0 (w3m-anchor ((t (:foreground "blue")))) > =A0 =A0 (w3m-current-anchor ((t (:foreground "blue" :weight bold :underli= ne t)))) > =A0 =A0 (w3m-arrived-anchor ((t (:foreground "purple1")))) > =A0 =A0 (w3m-form ((t (:foreground "tan1" :underline t)))) > =A0 =A0 (w3m-bold ((t (:foreground "medium sea green" :weight bold)))) > > =A0 =A0 (w3m-header-line-location-content-face ((t (:foreground "purple2"= )))) > =A0 =A0 (w3m-header-line-location-title-face ((t (:foreground "cadet blue= ")))) > =A0 =A0 (w3m-image-face ((t (:foreground "DarkSeaGreen2" :weight bold)))) > =A0 =A0 (w3m-strike-through-face ((t (:strike-through t)))) > =A0 =A0 (w3m-underline-face ((t (:underline t)))) > ;;; =A0 =A0 =A0(w3m-tab-background-face ((t (:background "rgb:21/36/4B"))= )) > ;;; =A0 =A0 =A0(w3m-tab-selected-face ((t (:background "Gray85" :foregrou= nd "black" :box (:line-width 1 :style nil))))) > ;;; =A0 =A0 =A0(w3m-tab-selected-retrieving-face ((t (:background "Gray85= " :foreground "white" :box (:line-width -1 :style nil))))) > ;;; =A0 =A0 =A0(w3m-tab-unselected-face ((t (:background "Gray70" :foregr= ound "Gray20" :box (:line-width 1 :style nil))))) > ;;; =A0 =A0 =A0(w3m-tab-unselected-retrieving-face ((t (:background "Gray= 50" :foreground "white" :box (:line-width -1 :style nil))))) > =A0 =A0 (w3m-bitmap-image-face ((t (:foreground "gray4" :background "gree= n")))) > ;;; =A0 =A0 =A0(w3m-form-button-face ((t (:background "lightgray" :foregr= ound "black")))) > =A0 =A0 (w3m-form-button-face ((t (:foreground "gray4" :background "light= gray" :weight bold :underline t)))) > ;;; =A0 =A0 =A0(w3m-form-button-mouse-face ((t (:background "orange")))) > =A0 =A0 (w3m-form-button-mouse-face ((t (:background "DarkGreen" :foregro= und "light gray" :underline t)))) > ;;; =A0 =A0 =A0(w3m-form-button-pressed-face ((t (:background "yellow")))= ) > =A0 =A0 (w3m-form-button-pressed-face ((t (:foreground "gray4" :backgroun= d "light gray" :weight bold :underline t)))) > ;;; =A0 =A0 =A0(w3m-history-current-url-face ((t (:background "SkyBlue4" = :foreground "LightSkyBlue")))) > =A0 =A0 (w3m-history-current-url-face ((t (:foreground "lemon chiffon")))= ) > > > =A0 =A0 ;; IRC > =A0 =A0 (circe-originator-face ((t (:foreground "blue")))) > =A0 =A0 (circe-highlight-all-nicks-face ((t (:foreground "blue")))) ; oth= er nicks > =A0 =A0 (circe-highlight-nick-face ((t (:foreground "firebrick")))) ; mes= sage with my nick cited > =A0 =A0 (lui-highlight-face ((t (:foreground "red")))) ; my nick > =A0 =A0 (circe-my-message-face ((t (:foreground "red")))) > =A0 =A0 (lui-time-stamp-face ((t (:foreground "orange")))) > =A0 =A0 (lui-button-face ((t (:foreground "blue" :underline t)))) > > =A0 =A0 ))) > > (provide 'color-theme-sva) > > ;;; color-theme-sva.el ends here > --8<---------------cut here---------------end--------------->8--- > > Any comment is welcome! > > Best regards, > =A0Seb > > -- > S=E9bastien Vauban > > > > _______________________________________________ > Emacs-orgmode mailing list > Please use `Reply All' to send replies to the list. > Emacs-orgmode@gnu.org > http://lists.gnu.org/mailman/listinfo/emacs-orgmode >