From mboxrd@z Thu Jan 1 00:00:00 1970 From: "Eric Schulte" Subject: Re: Re: org-mode color schemes with white or light background and black foregroung Date: Wed, 05 May 2010 15:25:01 -0600 Message-ID: <871vdqnis2.fsf@gmail.com> References: <87aasfo0ns.fsf@mundaneum.com> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Return-path: Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1O9mdq-0003jc-Gi for emacs-orgmode@gnu.org; Wed, 05 May 2010 18:00:30 -0400 Received: from [140.186.70.92] (port=37922 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1O9mHY-0002Xp-FA for emacs-orgmode@gnu.org; Wed, 05 May 2010 17:37:37 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.69) (envelope-from ) id 1O9m5m-0006TF-1K for emacs-orgmode@gnu.org; Wed, 05 May 2010 17:25:22 -0400 Received: from mail-yw0-f197.google.com ([209.85.211.197]:59600) by eggs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1O9m5l-0006T9-O7 for emacs-orgmode@gnu.org; Wed, 05 May 2010 17:25:17 -0400 Received: by ywh35 with SMTP id 35so3066341ywh.24 for ; Wed, 05 May 2010 14:25:16 -0700 (PDT) In-Reply-To: (Simao M.'s message of "Wed, 5 May 2010 17:00:33 +0100") 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: Simao M Cc: =?utf-8?Q?S=C3=A9bastien?= Vauban , emacs-orgmode@gnu.org Maybe this would make a good Worg page, a collection of org-mode screenshots along with the required color-theme.el file? If we get such a page going, I'd be happy to add my own dark color theme. Best -- Eric Simao M writes: > Screenshot please? :) > > 2010/5/4 S=C3=A9bastien Vauban : >> Hi Daniel, >> >> Daniel Martins wrote: >>> Some time ago Carsten sent a file with with his colours patterns with b= lack >>> 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. =C2=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 () >> =C2=A0"Color theme by Sebastien Vauban." >> =C2=A0(interactive) >> =C2=A0(color-theme-install >> =C2=A0 '(color-theme-sva >> =C2=A0 =C2=A0 ;; frame parameters >> =C2=A0 =C2=A0 ((background-color . "white") >> =C2=A0 =C2=A0 =C2=A0(background-mode . light) >> =C2=A0 =C2=A0 =C2=A0(border-color . "black") >> =C2=A0 =C2=A0 =C2=A0(cursor-color . "rgb:15/FF/00") >> =C2=A0 =C2=A0 =C2=A0(foreground-color . "black") >> =C2=A0 =C2=A0 =C2=A0(mouse-color . "black")) >> >> =C2=A0 =C2=A0 ;; faces >> =C2=A0 =C2=A0 (default ((t (nil)))) >> =C2=A0 =C2=A0 (bold ((t (:weight bold)))) >> =C2=A0 =C2=A0 (bold-italic ((t (:italic t :slant italic :weight bold)))) >> =C2=A0 =C2=A0 (italic ((t (:italic t :slant italic)))) >> =C2=A0 =C2=A0 (underline ((t (:underline t)))) >> >> =C2=A0 =C2=A0 (highlight ((t (:background "rgb:FF/FF/A0")))) =C2=A0;; ye= llow >> =C2=A0 =C2=A0 ;; used by hlt package of Drew Adams >> >> =C2=A0 =C2=A0 (recover-this-file ((t (:background "red")))) >> >> =C2=A0 =C2=A0 ;; non-breaking space >> =C2=A0 =C2=A0 (nobreak-space ((t (:background "rgb:C6/C3/C6" :foreground= "green")))) >> >> =C2=A0 =C2=A0 ;; bbdb >> =C2=A0 =C2=A0 (bbdb-company ((t (:foreground "steel blue" :italic t)))) >> =C2=A0 =C2=A0 (bbdb-field-name ((t (:foreground "steel blue" :weight bol= d)))) >> =C2=A0 =C2=A0 (bbdb-field-value ((t (:foreground "steel blue")))) >> =C2=A0 =C2=A0 (bbdb-name ((t (:foreground "rgb:FF/66/33" :underline t)))) >> >> =C2=A0 =C2=A0 ;; browse-kill-ring >> =C2=A0 =C2=A0 (browse-kill-ring-separator-face ((t (:foreground "slate g= ray" :weight bold)))) >> >> =C2=A0 =C2=A0 ;; calendar >> =C2=A0 =C2=A0 (calendar-today-face ((t (:weight bold :background "yellow= ")))) >> =C2=A0 =C2=A0 (diary-face ((t (:foreground "dark cyan")))) >> =C2=A0 =C2=A0 (holiday-face ((t (:foreground "red")))) >> >> =C2=A0 =C2=A0 ;; column-marker >> =C2=A0 =C2=A0 (column-marker-1-face ((t (:background "DarkSeaGreen1")))) >> =C2=A0 =C2=A0 (column-marker-2-face ((t (:background "LemonChiffon")))) >> =C2=A0 =C2=A0 (column-marker-3-face ((t (:background "MistyRose")))) >> >> =C2=A0 =C2=A0 (comint-highlight-input ((t (:weight bold)))) >> =C2=A0 =C2=A0 (comint-highlight-prompt ((t (:foreground "blue")))) >> >> =C2=A0 =C2=A0 ;; custom >> =C2=A0 =C2=A0 (custom-saved-face ((t (:underline t)))) >> =C2=A0 =C2=A0 (custom-state-face ((t (:foreground "green4")))) >> =C2=A0 =C2=A0 (custom-button-pressed-face ((t (:background "lightgray" >> =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 = =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0:foreground "= black" >> =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 = =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0:box (:line-w= idth 2 >> =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 = =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2= =A0 =C2=A0:style pressed-button))))) >> =C2=A0 =C2=A0 (custom-modified-face ((t (:background "blue" :foreground = "white")))) >> =C2=A0 =C2=A0 (custom-invalid-face ((t (:background "red" :foreground "y= ellow")))) >> =C2=A0 =C2=A0 (custom-set-face ((t (:background "white" :foreground "blu= e")))) >> =C2=A0 =C2=A0 (custom-changed-face ((t (:background "blue" :foreground "= white")))) >> =C2=A0 =C2=A0 (custom-rogue-face ((t (:background "black" :foreground "p= ink")))) >> =C2=A0 =C2=A0 (custom-face-tag-face ((t (:underline t)))) >> =C2=A0 =C2=A0 (custom-variable-button-face ((t (:underline t :weight bol= d)))) >> >> =C2=A0 =C2=A0 ;; cvs >> =C2=A0 =C2=A0 (cvs-filename-face ((t (:foreground "blue4")))) >> =C2=A0 =C2=A0 (cvs-handled-face ((t (:foreground "pink")))) >> =C2=A0 =C2=A0 (cvs-header-face ((t (:foreground "blue4" :weight bold)))) >> =C2=A0 =C2=A0 (cvs-marked-face ((t (:foreground "green3" :weight bold)))) >> =C2=A0 =C2=A0 (cvs-msg-face ((t (:italic t :foreground "gray55")))) >> =C2=A0 =C2=A0 (cvs-need-action-face ((t (:foreground "orange")))) >> =C2=A0 =C2=A0 (cvs-unknown-face ((t (:foreground "red")))) >> >> =C2=A0 =C2=A0 ;; subversion >> =C2=A0 =C2=A0 (svn-status-marked-face ((t (:foreground "green3" :weight = bold)))) >> =C2=A0 =C2=A0 (svn-status-marked-popup-face ((t (:foreground "green3" :w= eight bold)))) >> =C2=A0 =C2=A0 (svn-status-update-available-face ((t (:foreground "orange= ")))) >> =C2=A0 =C2=A0 (svn-status-directory-face ((t (:background "rgb:FF/F5/8F" >> =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 = =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 :foreground "blue" = :weight bold)))) >> =C2=A0 =C2=A0 (svn-status-filename-face ((t (:foreground "magenta3")))) >> =C2=A0 =C2=A0 (svn-status-symlink-face =C2=A0((t (:foreground "cyan")))) >> =C2=A0 =C2=A0 (svn-status-locked-face ((t (:foreground "red" :weight bol= d)))) >> =C2=A0 =C2=A0 (svn-status-switched-face ((t (:italic t :foreground "gray= 55")))) >> >> =C2=A0 =C2=A0 ;; diff >> =C2=A0 =C2=A0 (diff-added ((t (:background "rgb:DD/FF/DD" :foreground "D= arkGreen")))) >> =C2=A0 =C2=A0 (diff-hunk-header ((t (:background "rgb:EA/F2/F5" :foregro= und "rgb:99/99/99")))) >> =C2=A0 =C2=A0 (diff-index ((t (:background "rgb:EA/F2/F5" :foreground "r= gb:99/99/99")))) >> =C2=A0 =C2=A0 (diff-indicator-added ((t (:background "rgb:AA/FF/AA")))) >> =C2=A0 =C2=A0 (diff-indicator-removed ((t (:background "rgb:FF/AA/AA")))) >> =C2=A0 =C2=A0 (diff-removed ((t (:background "rgb:FF/DD/DD" :foreground = "DarkMagenta")))) >> >> =C2=A0 =C2=A0 ;; dircolors >> =C2=A0 =C2=A0 (dircolors-face-asm ((t (:foreground "blue3")))) >> =C2=A0 =C2=A0 (dircolors-face-backup ((t (:foreground "blue3")))) >> =C2=A0 =C2=A0 (dircolors-face-compress ((t (:foreground "red")))) >> =C2=A0 =C2=A0 (dircolors-face-dir ((t (:foreground "blue" :weight bold))= )) >> =C2=A0 =C2=A0 (dircolors-face-doc ((t (:foreground "gold")))) >> =C2=A0 =C2=A0 (dircolors-face-dos ((t (:foreground "green3")))) >> =C2=A0 =C2=A0 (dircolors-face-emacs ((t (:foreground "turquoise3")))) >> =C2=A0 =C2=A0 (dircolors-face-html ((t (:foreground "gold")))) >> =C2=A0 =C2=A0 (dircolors-face-img ((t (:foreground "magenta3")))) >> =C2=A0 =C2=A0 (dircolors-face-lang ((t (:foreground "turquoise3")))) >> =C2=A0 =C2=A0 (dircolors-face-lang-interface ((t (:foreground "turquoise= 3")))) >> =C2=A0 =C2=A0 (dircolors-face-make ((t (:foreground "green3")))) >> =C2=A0 =C2=A0 (dircolors-face-objet ((t (:foreground "blue3")))) >> =C2=A0 =C2=A0 (dircolors-face-package ((t (:foreground "red")))) >> =C2=A0 =C2=A0 (dircolors-face-paddb ((t (:foreground "blue3")))) >> =C2=A0 =C2=A0 (dircolors-face-ps ((t (:foreground "gold")))) >> =C2=A0 =C2=A0 (dircolors-face-sound ((t (:foreground "magenta3")))) >> =C2=A0 =C2=A0 (dircolors-face-tar ((t (:foreground "red")))) >> =C2=A0 =C2=A0 (dircolors-face-yacc ((t (:foreground "turquoise3")))) >> >> =C2=A0 =C2=A0 ;; dired >> =C2=A0 =C2=A0 (dired-face-boring ((t (:foreground "Gray65")))) >> =C2=A0 =C2=A0 (dired-face-directory ((t (:weight bold)))) >> =C2=A0 =C2=A0 (dired-face-executable ((t (:foreground "SeaGreen")))) >> =C2=A0 =C2=A0 (dired-face-flagged ((t (:background "LightSlateGray")))) >> =C2=A0 =C2=A0 (dired-face-header ((t (:background "gray75" :foreground "= black")))) >> =C2=A0 =C2=A0 (dired-face-marked ((t (:background "PaleVioletRed")))) >> =C2=A0 =C2=A0 (dired-face-permissions ((t (:background "gray75" :foregro= und "black")))) >> =C2=A0 =C2=A0 (dired-face-setuid ((t (:foreground "Red")))) >> =C2=A0 =C2=A0 (dired-face-socket ((t (:foreground "magenta")))) >> =C2=A0 =C2=A0 (dired-face-symlink ((t (:foreground "cyan")))) >> >> =C2=A0 =C2=A0 ;; dired+ >> =C2=A0 =C2=A0 (diredp-date-time ((t (:foreground "rgb:33/64/4E")))) >> =C2=A0 =C2=A0 (diredp-dir-heading ((t (:background "rgb:FF/F5/8F" :foreg= round "blue" >> =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 = =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2= =A0:weight bold)))) >> =C2=A0 =C2=A0 (diredp-dir-priv ((t (:background "rgb:FF/F5/8F" :foregrou= nd "blue" >> =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 = =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 :weight bold= )))) >> =C2=A0 =C2=A0 (diredp-file-name ((t (:foreground "black")))) >> =C2=A0 =C2=A0 (diredp-file-suffix ((t (:foreground "rgb:7B/46/8E")))) >> =C2=A0 =C2=A0 (diredp-flag-mark-line ((t (:foreground "red" :weight bold= )))) >> >> =C2=A0 =C2=A0 ;; emacs wiki >> =C2=A0 =C2=A0 (emacs-wiki-bad-link-face ((t (:foreground "red" :weight b= old)))) >> =C2=A0 =C2=A0 (emacs-wiki-header-1 ((t (:weight bold :height 1.4)))) >> =C2=A0 =C2=A0 (emacs-wiki-header-2 ((t (:weight bold :height 1.3)))) >> =C2=A0 =C2=A0 (emacs-wiki-header-3 ((t (:height 1.2)))) >> =C2=A0 =C2=A0 (emacs-wiki-header-4 ((t (:height 1.1)))) >> =C2=A0 =C2=A0 (emacs-wiki-header-5 ((t (:height 1.0)))) >> =C2=A0 =C2=A0 (emacs-wiki-header-6 ((t (:height 0.9)))) >> =C2=A0 =C2=A0 (emacs-wiki-link-face ((t (:foreground "blue" :underline t= )))) >> >> =C2=A0 =C2=A0 ;; flypell >> =C2=A0 =C2=A0 (flyspell-duplicate-face ((t (:foreground "Gold3" :underli= ne t >> =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 = =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 :weight bold)))) >> =C2=A0 =C2=A0 (flyspell-incorrect-face ((t (:foreground "red" :underline= t >> =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 = =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 :weight bold)))) >> >> =C2=A0 =C2=A0 ;; TeX >> =C2=A0 =C2=A0 (tex-verbatim ((t (:foreground "tan1")))) >> >> =C2=A0 =C2=A0 ;; LaTeX >> =C2=A0 =C2=A0 (font-latex-bold-face ((t (:foreground "medium sea green" = :weight bold)))) >> =C2=A0 =C2=A0 (font-latex-math-face ((t (:foreground "black")))) >> =C2=A0 =C2=A0 (font-latex-sedate-face ((t (:foreground "gray45")))) >> =C2=A0 =C2=A0 (font-latex-verbatim-face ((t (:foreground "tan1")))) >> =C2=A0 =C2=A0 (font-latex-sectioning-1-face ((t (:foreground "cornflower= blue" :weight bold :height 2.7 :family "Arial")))) >> =C2=A0 =C2=A0 (font-latex-sectioning-2-face ((t (:foreground "cornflower= blue" :weight bold :height 1.8 :family "Arial")))) >> =C2=A0 =C2=A0 (font-latex-sectioning-3-face ((t (:foreground "LimeGreen"= :weight bold :height 1.6 :family "Arial")))) >> =C2=A0 =C2=A0 (font-latex-sectioning-4-face ((t (:foreground "orange" :w= eight bold :height 1.3 :family "Arial")))) >> =C2=A0 =C2=A0 (font-latex-sectioning-5-face ((t (:foreground "IndianRed1= ")))) >> >> =C2=A0 =C2=A0 ;; >> =C2=A0 =C2=A0 (font-lock-comment-face ((t (:foreground "red")))) >> =C2=A0 =C2=A0 (font-lock-constant-face ((t (:foreground "dark cyan")))) >> =C2=A0;; (font-lock-doc-string-face ((t (:foreground "yellow")))) >> =C2=A0 =C2=A0 (font-lock-function-name-face ((t (:foreground "blue")))) >> =C2=A0 =C2=A0 (font-lock-keyword-face ((t (:foreground "purple1")))) >> =C2=A0;; (font-lock-preprocessor-face ((t (:foreground "yellow")))) >> =C2=A0 =C2=A0 (font-lock-reference-face ((t (:foreground "dark cyan")))) >> =C2=A0 =C2=A0 (font-lock-string-face ((t (:foreground "green4")))) >> =C2=A0 =C2=A0 (font-lock-type-face ((t (:foreground "forest green")))) >> =C2=A0 =C2=A0 (font-lock-variable-name-face ((t (:foreground "magenta"))= )) >> =C2=A0 =C2=A0 (font-lock-warning-face ((t (:weight bold :foreground "red= ")))) >> >> =C2=A0 =C2=A0 (pesche-space ((t (:background "LemonChiffon")))) >> =C2=A0 =C2=A0 (pesche-tab ((t (:background "Gold")))) >> >> =C2=A0 =C2=A0 (fringe ((t (:foreground "rgb:AF/B7/BA" :background "rgb:D= D/EE/FF")))) >> =C2=A0 =C2=A0 (linum ((t (:foreground "rgb:AF/B7/BA" :background "rgb:DD= /EE/FF")))) >> >> =C2=A0 =C2=A0 (gnus-splash-face ((t (:foreground "gold")))) >> >> =C2=A0 =C2=A0 ;; Gnus group buffer >> =C2=A0 =C2=A0 (gnus-group-mail-1-empty-face ((t (:foreground "rgb:50/50/= B0")))) >> =C2=A0 =C2=A0 (gnus-group-mail-1-face ((t (:foreground "rgb:FF/50/B0" :w= eight bold)))) >> =C2=A0 =C2=A0 (gnus-group-mail-2-empty-face ((t (:foreground "rgb:66/00/= 66")))) >> =C2=A0 =C2=A0 (gnus-group-mail-2-face ((t (:foreground "rgb:FF/00/66" :w= eight bold)))) >> =C2=A0 =C2=A0 (gnus-group-mail-3-empty-face ((t (:foreground "rgb:00/77/= 77")))) >> =C2=A0 =C2=A0 (gnus-group-mail-3-face ((t (:foreground "rgb:FF/77/77" :w= eight bold)))) >> >> =C2=A0 =C2=A0 (gnus-group-news-1-empty-face ((t (:foreground "rgb:50/50/= B0")))) >> =C2=A0 =C2=A0 (gnus-group-news-1-face ((t (:foreground "rgb:FF/50/B0" :w= eight bold)))) >> =C2=A0 =C2=A0 (gnus-group-news-2-empty-face ((t (:foreground "rgb:66/00/= 66")))) >> =C2=A0 =C2=A0 (gnus-group-news-2-face ((t (:foreground "rgb:FF/00/66" :w= eight bold)))) >> =C2=A0 =C2=A0 (gnus-group-news-3-empty-face ((t (:foreground "rgb:00/77/= 77")))) >> =C2=A0 =C2=A0 (gnus-group-news-3-face ((t (:foreground "rgb:FF/77/77" :w= eight bold)))) >> =C2=A0 =C2=A0 (gnus-group-news-4-empty-face ((t (:foreground "rgb:99/00/= 00")))) >> =C2=A0 =C2=A0 (gnus-group-news-4-face ((t (:foreground "rgb:FF/00/00" :w= eight bold)))) >> =C2=A0 =C2=A0 (gnus-group-news-5-empty-face ((t (:foreground "rgb:00/00/= 99")))) >> =C2=A0 =C2=A0 (gnus-group-news-5-face ((t (:foreground "rgb:FF/00/99" :w= eight bold)))) >> =C2=A0 =C2=A0 (gnus-group-news-6-empty-face ((t (:foreground "rgb:BB/66/= 00")))) >> =C2=A0 =C2=A0 (gnus-group-news-6-face ((t (:foreground "rgb:FF/66/00" :w= eight bold)))) >> >> =C2=A0 =C2=A0 ;; Gnus summary buffer >> =C2=A0 =C2=A0 (hl-line ((t (:background "rgb:D4/EA/FF")))) =C2=A0;; ligh= t blue >> =C2=A0 =C2=A0 (gnus-summary-selected-face ((t (:foreground "rgb:FF/66/33= " :weight bold)))) >> =C2=A0 =C2=A0 (gnus-summary-high-unread-face ((t (:foreground "blue" :we= ight bold)))) >> =C2=A0 =C2=A0 (gnus-summary-high-read-face ((t (:foreground "rgb:80/00/8= 0" :weight bold)))) >> =C2=A0 =C2=A0 (gnus-summary-high-ticked-face ((t (:foreground "hot pink"= :weight bold)))) >> =C2=A0 =C2=A0 (gnus-summary-high-ancient-face ((t (:foreground "rgb:77/7= 7/99" :weight bold)))) >> =C2=A0 =C2=A0 (gnus-summary-normal-unread-face ((t (:foreground "blue"))= )) >> =C2=A0 =C2=A0 (gnus-summary-normal-read-face ((t (:foreground "rgb:80/00= /80")))) >> =C2=A0 =C2=A0 (gnus-summary-normal-ticked-face ((t (:foreground "hot pin= k")))) >> =C2=A0 =C2=A0 (gnus-summary-normal-ancient-face ((t (:foreground "rgb:77= /77/99")))) >> =C2=A0 =C2=A0 (gnus-summary-low-unread-face ((t (:low t :foreground "blu= e" :italic t)))) >> =C2=A0 =C2=A0 (gnus-summary-low-read-face ((t (:low t :foreground "rgb:8= 0/00/80" :italic t)))) >> =C2=A0 =C2=A0 (gnus-summary-low-ticked-face ((t (:low t :foreground "hot= pink" :italic t)))) >> =C2=A0 =C2=A0 (gnus-summary-low-ancient-face ((t (:low t :foreground "rg= b:77/77/99" :italic t)))) >> =C2=A0 =C2=A0 (gnus-summary-cancelled-face ((t (:italic t :foreground "g= ray55" :strike-through t)))) >> >> =C2=A0 =C2=A0 ;; Gnus article buffer >> =C2=A0 =C2=A0 (gnus-header-name-face ((t (:foreground "rgb:33/99/CC" :we= ight bold :family "Arial")))) >> =C2=A0 =C2=A0 (gnus-header-from-face ((t (:foreground "blue" :family "Ar= ial")))) >> =C2=A0 =C2=A0 (gnus-header-subject-face ((t (:foreground "rgb:FF/66/33" = :weight bold)))) >> =C2=A0 =C2=A0 (gnus-header-newsgroups-face ((t (:foreground "rgb:33/99/C= C" :family "Arial")))) >> =C2=A0 =C2=A0 (gnus-header-content-face ((t (:foreground "rgb:33/99/CC" = :family "Arial")))) >> =C2=A0 =C2=A0 (gnus-cite-attribution-face ((t (:foreground "rgb:50/50/B0= ")))) >> =C2=A0 =C2=A0 (gnus-cite-face-1 ((t (:foreground "rgb:50/50/B0")))) >> =C2=A0 =C2=A0 (gnus-cite-face-2 ((t (:foreground "rgb:66/00/66")))) >> =C2=A0 =C2=A0 (gnus-cite-face-3 ((t (:foreground "rgb:00/77/77")))) >> =C2=A0 =C2=A0 (gnus-cite-face-4 ((t (:foreground "rgb:99/00/00")))) >> =C2=A0 =C2=A0 (gnus-cite-face-5 ((t (:foreground "rgb:00/00/99")))) >> =C2=A0 =C2=A0 (gnus-cite-face-6 ((t (:foreground "rgb:BB/66/00")))) >> =C2=A0 =C2=A0 (gnus-cite-face-7 ((t (:foreground "rgb:50/50/B0")))) >> =C2=A0 =C2=A0 (gnus-cite-face-8 ((t (:foreground "rgb:66/00/66")))) >> =C2=A0 =C2=A0 (gnus-cite-face-9 ((t (:foreground "rgb:00/77/77")))) >> =C2=A0 =C2=A0 (gnus-cite-face-10 ((t (:foreground "rgb:99/00/00")))) >> =C2=A0 =C2=A0 (gnus-signature-face ((t (:foreground "rgb:7F/7F/7F")))) >> =C2=A0 =C2=A0 (gnus-emphasis-bold ((t (:weight bold)))) >> >> =C2=A0 =C2=A0 (widget-button-face ((t (:weight bold)))) >> =C2=A0 =C2=A0 (widget-button-pressed-face ((t (:foreground "red")))) >> =C2=A0 =C2=A0 (widget-documentation-face ((t (:foreground "green4")))) >> =C2=A0 =C2=A0 (widget-field-face ((t (:background "gray85")))) >> =C2=A0 =C2=A0 (widget-inactive-face ((t (:foreground "dim gray")))) >> =C2=A0 =C2=A0 (widget-single-line-field-face ((t (:background "gray85"))= )) >> ;; =C2=A0 =C2=A0 (widget-mouse-face . highlight) >> >> =C2=A0 =C2=A0 ;; when replying >> =C2=A0 =C2=A0 (message-header-name-face ((t (:foreground "rgb:33/99/CC" = :weight bold >> =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 = =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0:family "Arial")))) >> =C2=A0 =C2=A0 (message-header-to-face ((t (:foreground "blue" :family "A= rial")))) >> =C2=A0 =C2=A0 (message-header-cc-face ((t (:foreground "blue" :family "A= rial")))) >> =C2=A0 =C2=A0 (message-header-subject-face ((t (:foreground "rgb:FF/66/3= 3" :weight bold)))) >> =C2=A0 =C2=A0 (message-header-newsgroups-face ((t (:foreground "rgb:33/9= 9/CC" >> =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 = =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2= =A0:family "Arial")))) >> =C2=A0 =C2=A0 (message-header-xheader-face ((t (:foreground "red")))) >> =C2=A0 =C2=A0 (message-header-other-face ((t (:foreground "rgb:33/99/CC" >> =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 = =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 :family "Arial")))) >> =C2=A0 =C2=A0 (message-separator-face ((t (:foreground "red" :weight bol= d :family "Arial")))) >> =C2=A0 =C2=A0 (message-cited-text-face ((t (:foreground "rgb:50/50/B0"))= )) >> =C2=A0 =C2=A0 (message-mml-face ((t (:foreground "forest green")))) >> >> =C2=A0 =C2=A0 ;; Gnus/Message >> =C2=A0 =C2=A0 (gnus-emphasis-highlight-words ((t (:background "black" >> =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 = =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 :fore= ground "yellow")))) >> =C2=A0 =C2=A0 (gnus-picon-face ((t (:background "white" :foreground "yel= low")))) >> =C2=A0 =C2=A0 (gnus-picon-xbm-face ((t (:background "white" :foreground = "yellow")))) >> =C2=A0 =C2=A0 (gnus-x-face ((t (:background "white" :foreground "black")= ))) >> >> =C2=A0 =C2=A0 (html-helper-bold-face ((t (:foreground "black" :weight bo= ld)))) >> =C2=A0 =C2=A0 (html-helper-italic-face ((t (:foreground "black" :slant i= talic)))) >> =C2=A0 =C2=A0 (html-helper-underline-face ((t (:foreground "black" :unde= rline t)))) >> =C2=A0 =C2=A0 (html-tag-face ((t (:foreground "blue")))) >> >> =C2=A0 =C2=A0 (nxml-attribute-local-name-face ((t (:foreground "magenta"= )))) >> =C2=A0 =C2=A0 (nxml-attribute-value-delimiter-face ((t (:foreground "gre= en4")))) >> =C2=A0 =C2=A0 (nxml-attribute-value-face ((t (:foreground "green4")))) >> =C2=A0 =C2=A0 (nxml-comment-content-face =C2=A0((t (:foreground "red" :s= lant italic)))) >> =C2=A0 =C2=A0 (nxml-comment-delimiter-face ((t (:foreground "red")))) >> =C2=A0 =C2=A0 (nxml-element-local-name-face ((t (:foreground "blue")))) >> =C2=A0 =C2=A0 (nxml-processing-instruction-delimiter-face ((t (:foregrou= nd "purple1")))) >> =C2=A0 =C2=A0 (nxml-processing-instruction-target-face ((t (:foreground = "purple1")))) >> =C2=A0 =C2=A0 (nxml-tag-delimiter-face ((t (:foreground "blue")))) >> =C2=A0 =C2=A0 (nxml-tag-slash-face ((t (:foreground "blue")))) >> >> =C2=A0 =C2=A0 (anything-header ((t (:family "Sans Serif" :foreground "wh= ite" :weight bold :height 1.3 :background "rgb:66/66/99")))) >> >> =C2=A0 =C2=A0 ;; Info >> =C2=A0 =C2=A0 (info-header-node ((t (:foreground "orange" :underline t))= )) ; nodes in header >> =C2=A0 =C2=A0 (info-header-xref ((t (:foreground "dodger blue" :underlin= e t)))) ; cross references in header >> =C2=A0 =C2=A0 (info-menu-header ((t (:foreground "red" :underline t)))) = ; menu titles (headers) -- major topics >> =C2=A0 =C2=A0 (info-menu-star ((t (:foreground "black")))) ; every 3rd m= enu item >> =C2=A0 =C2=A0 (info-node ((t (:foreground "blue" :underline t)))) ; node= names >> =C2=A0 =C2=A0 (info-xref ((t (:foreground "blue" :weight bold :underline= t)))) ; unvisited cross-references >> =C2=A0 =C2=A0 (info-xref-visited ((t (:foreground "magenta4" :weight bol= d)))) ; previously visited cross-references >> >> =C2=A0 =C2=A0 ;; info+ >> =C2=A0 =C2=A0 (info-quoted-name ((t (:foreground "dark cyan")))) ; quote= d names (`...') >> =C2=A0 =C2=A0 (info-string ((t (:foreground "green4")))) ; strings ("...= ") >> ;;; =C2=A0(info-menu ()) ; menu items >> ;;; =C2=A0(info-file ()) ; file heading labels >> >> ;;; =C2=A0 =C2=A0 =C2=A0And for reference items in the Elisp manual, >> ;;; =C2=A0 =C2=A0 =C2=A0you can customize these faces: >> ;;; =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0info-elisp-user-option-ref-item = =C2=A0- label `User Option' >> ;;; =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0info-elisp-variable-ref-item =C2= =A0 =C2=A0 - label `Variable' >> ;;; =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0info-elisp-command-ref-item =C2=A0= =C2=A0 =C2=A0- label `Command' >> ;;; =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0info-elisp-function-ref-item =C2= =A0 =C2=A0 - label `Function' >> ;;; =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0info-elisp-macro-ref-item =C2=A0 = =C2=A0 =C2=A0 =C2=A0- label `Macro' >> ;;; =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0info-elisp-special-form-ref-item -= label `Special Form' >> ;;; =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0info-elisp-syntax-class-item =C2= =A0 =C2=A0 - label `Syntax Class' >> ;;; =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0info-elisp-reference-item =C2=A0 = =C2=A0 =C2=A0 =C2=A0- other reference labels >> >> =C2=A0 =C2=A0 ;; highlighting matches >> =C2=A0 =C2=A0 (match ((t (:background "yellow" :foreground "rgb:EE/66/00= " :weight bold)))) >> =C2=A0 =C2=A0 (isearch ((t (:background "yellow" :foreground "rgb:EE/66/= 00" :weight bold)))) >> =C2=A0 =C2=A0 (isearch-lazy-highlight-face ((t (:background "rgb:CC/FF/F= F" >> =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 = =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 :foreground = "blue" >> =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 = =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 :weight bold= )))) ;; for GNU Emacs >> =C2=A0 =C2=A0 (isearch-secondary ((t (:background "rgb:CC/FF/FF" >> =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 = =C2=A0 =C2=A0 =C2=A0 =C2=A0 :foreground "blue" >> =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 = =C2=A0 =C2=A0 =C2=A0 =C2=A0 :weight bold)))) ;; for XEmacs >> >> =C2=A0 =C2=A0 ;; make >> =C2=A0 =C2=A0 (makefile-space-face ((t (:background "hotpink")))) >> >> =C2=A0 =C2=A0 ;; GNU Emacs mode-line >> =C2=A0 =C2=A0 (mode-line ((t (:background "rgb:00/97/CB" :foreground "rg= b:FF/C7/7F" >> =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 :b= ox (:line-width 1 :color "rgb:9E/AB/B6") >> =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 :w= eight normal)))) >> =C2=A0 =C2=A0 (mode-line-inactive ((t (:background "rgb:00/63/82" :foreg= round "rgb:61/7A/82" >> =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 = =C2=A0 =C2=A0 =C2=A0 =C2=A0 :box (:line-width 1 :color "rgb:9E/AB/B6") >> =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 = =C2=A0 =C2=A0 =C2=A0 =C2=A0 :weight normal)))) >> =C2=A0 =C2=A0 (mode-line-highlight ((t (:foreground "yellow")))) >> =C2=A0 =C2=A0 (mode-line-buffer-id ((t (:foreground "white")))) >> >> =C2=A0 =C2=A0 ;; XEmacs modeline >> =C2=A0 =C2=A0 (modeline-mousable ((t (:foreground "firebrick")))) =C2=A0= ; major-mode string >> =C2=A0 =C2=A0 (modeline-mousable-minor-mode ((t (:foreground "green4")))) >> >> =C2=A0 =C2=A0 ;; Muse >> =C2=A0 =C2=A0 (muse-verbatim ((t (:foreground "tan1")))) >> =C2=A0 =C2=A0 (muse-header-1 ((t (:foreground "red")))) =C2=A0; blue4 >> >> =C2=A0 =C2=A0 (muse-header-2 ((t (:inherit variable-pitch :foreground "L= ightBlue2" :weight bold :height 1.3)))) >> =C2=A0 =C2=A0 (muse-header-3 ((t (:inherit variable-pitch :foreground "L= ightSkyBlue2" :height 1.2)))) >> =C2=A0 =C2=A0 (muse-header-4 ((t (:inherit variable-pitch :foreground "L= ightSkyBlue3" :slant italic :height 1.1)))) >> =C2=A0 =C2=A0 (muse-header-5 ((t (:inherit variable-pitch :foreground "L= ightSkyBlue3" :height 1.0)))) >> >> =C2=A0 =C2=A0 ;; org >> =C2=A0 =C2=A0 (org-agenda-date ((t (:background "LightSkyBlue")))) >> =C2=A0 =C2=A0 (org-agenda-date-today ((t (:background "yellow" :slant no= rmal :weight bold)))) >> =C2=A0 =C2=A0 (org-agenda-date-weekend ((t (:foreground "white" :backgro= und "blue4" :weight bold)))) >> =C2=A0 =C2=A0 (org-code ((t (:foreground "blue")))) >> >> =C2=A0 =C2=A0 (org-column ((t (:background "gold" :height 80 :family "Co= nsolas")))) >> =C2=A0 =C2=A0 (org-agenda-column-dateline ((t (:background "deep sky blu= e" :height 80 :family "Consolas")))) >> >> =C2=A0 =C2=A0 (org-done ((t (:foreground "green3" :weight bold :strike-t= hrough t)))) >> =C2=A0 =C2=A0 (org-latex-and-export-specials ((t (:foreground "tan1")))) >> =C2=A0 =C2=A0 (org-level-1 ((t (:foreground "cornflower blue" :weight bo= ld :height 1.8 :family "Arial")))) >> =C2=A0 =C2=A0 (org-level-2 ((t (:foreground "LimeGreen" :weight bold :he= ight 1.6 :family "Arial")))) >> =C2=A0 =C2=A0 (org-level-3 ((t (:foreground "orange" :weight bold :heigh= t 1.3 :family "Arial")))) >> =C2=A0 =C2=A0 (org-level-4 ((t (:foreground "IndianRed1")))) >> =C2=A0 =C2=A0 (org-level-5 ((t (:foreground "cornflower blue")))) >> =C2=A0 =C2=A0 (org-level-6 ((t (:foreground "LimeGreen")))) >> =C2=A0 =C2=A0 (org-level-7 ((t (:foreground "orange")))) >> =C2=A0 =C2=A0 (org-level-8 ((t (:foreground "IndianRed1")))) >> =C2=A0 =C2=A0 (org-headline-done ((t (:foreground "rgb:AA/AA/AA" :weight= bold :height 1.3 :family "Arial" :strike-through t)))) >> =C2=A0 =C2=A0 (org-agenda-diary ((t (:foreground "DarkGreen" :background= "lightblue" :weight bold)))) >> =C2=A0 =C2=A0 (org-scheduled ((t (:foreground "blue" :weight bold)))) >> =C2=A0 =C2=A0 (org-scheduled-today ((t (:foreground "DarkGreen" :weight = bold)))) >> =C2=A0 =C2=A0 (org-scheduled-previously ((t (:foreground "red" :weight b= old)))) >> =C2=A0 =C2=A0 (org-upcoming-deadline ((t (:foreground "white" :backgroun= d "rgb:E9/A3/6A" :weight bold)))) >> =C2=A0 =C2=A0 (org-warning ((t (:foreground "white" :background "rgb:D8/= 00/00" :weight bold)))) >> >> =C2=A0 =C2=A0 (sva-org-deadline-yesterday ((t (:foreground "white" :back= ground "rgb:D8/00/00" :weight bold)))) >> =C2=A0 =C2=A0 (sva-org-deadline-today ((t (:foreground "white" :backgrou= nd "rgb:E9/A3/6A" :weight bold)))) >> =C2=A0 =C2=A0 (sva-org-deadline-tomorrow ((t (:foreground "black" :backg= round "#B4F1B3" :weight bold)))) >> =C2=A0 =C2=A0 (sva-org-deadline-later ((t (:foreground "black" :backgrou= nd "#AACAFC")))) >> >> =C2=A0 =C2=A0 (org-special-keyword ((t (:foreground "red")))) >> =C2=A0 =C2=A0 (org-tag ((t (:foreground "rgb:81/6A/7D" :background "rgb:= F7/B8/DE" :italic t)))) >> =C2=A0 =C2=A0 (org-time-grid ((t (:foreground "gray60")))) >> =C2=A0 =C2=A0 (org-mode-line-clock ((t (:background "rgb:FF/90/00" :fore= ground "white")))) ; orange >> =C2=A0 =C2=A0 (org-mode-line-clock-overrun ((t (:background "red" :foreg= round "white")))) >> >> =C2=A0 =C2=A0 (org-dim ((t (:foreground "rgb:AA/AA/AA")))) >> =C2=A0 =C2=A0 (org-document-title ((t (:foreground "blue" :weight bold))= )) >> =C2=A0 =C2=A0 (org-document-info-keyword ((t (:foreground "rgb:AA/AA/AA"= )))) >> =C2=A0 =C2=A0 (org-document-info ((t (:foreground "blue4")))) >> >> =C2=A0 =C2=A0 ;; non-standard faces >> =C2=A0 =C2=A0 (sva-org-todo-kwd-face ((t (:foreground "gold" :background= "tomato" :weight bold)))) >> =C2=A0 =C2=A0 (sva-org-someday-kwd-face ((t (:foreground "gold" :backgro= und "tomato" :weight bold)))) >> =C2=A0 =C2=A0 (sva-org-started-kwd-face ((t (:foreground "cyan" :backgro= und "steelblue" :weight bold)))) >> =C2=A0 =C2=A0 (sva-org-waiting-kwd-face ((t (:foreground "gold" :backgro= und "magenta2" :weight bold)))) >> =C2=A0 =C2=A0 (sva-org-delegated-kwd-face ((t (:foreground "gold" :backg= round "magenta2" :weight bold)))) >> =C2=A0 =C2=A0 (sva-org-deferred-kwd-face ((t (:foreground "gold" :backgr= ound "magenta2" :weight bold)))) >> =C2=A0 =C2=A0 (sva-org-done-kwd-face ((t (:foreground "rgb:AA/AA/AA" :ba= ckground "black" :weight bold)))) >> =C2=A0 =C2=A0 (sva-org-canceled-kwd-face ((t (:foreground "rgb:AA/AA/AA"= :background "black" :weight bold)))) >> >> =C2=A0 =C2=A0 (sva-org-quote-kwd-face ((t (:foreground "yellow" :backgro= und "red" :weight bold)))) >> =C2=A0 =C2=A0 (sva-org-quoted-kwd-face ((t (:foreground "yellow" :backgr= ound "red" :weight bold)))) >> =C2=A0 =C2=A0 (sva-org-approved-kwd-face ((t (:foreground "gray50" :back= ground "gray30" :weight bold)))) >> =C2=A0 =C2=A0 (sva-org-expired-kwd-face ((t (:foreground "gray50" :backg= round "gray30" :weight bold)))) >> =C2=A0 =C2=A0 (sva-org-rejected-kwd-face ((t (:foreground "gray50" :back= ground "gray30" :weight bold)))) >> >> =C2=A0 =C2=A0 (sva-org-openpo-kwd-face ((t (:foreground "cyan" :backgrou= nd "steelblue" :weight bold)))) >> =C2=A0 =C2=A0 (sva-org-closedpo-kwd-face ((t (:foreground "gray50" :back= ground "gray30" :weight bold)))) >> >> =C2=A0 =C2=A0 ;; pretty print ^L >> =C2=A0 =C2=A0 (pp^L-highlight ((t (:inherit shadow :strike-through t)))) >> >> =C2=A0 =C2=A0 ;; selection >> =C2=A0 =C2=A0 (region ((t (:background "seashell2")))) ;; for GNU Emacs >> =C2=A0 =C2=A0 (zmacs-region ((t (:background "seashell2")))) ;; for XEma= cs >> =C2=A0 =C2=A0 (secondary-selection ((t (:background "paleturquoise")))) >> >> =C2=A0 =C2=A0 ;; for `cat <> =C2=A0 =C2=A0 (sh-heredoc ((t (:foreground "tan1")))) >> >> =C2=A0 =C2=A0 ;; parentheses >> =C2=A0 =C2=A0 (paren-face-match ((t (:background "chartreuse")))) >> =C2=A0 =C2=A0 (paren-face-mismatch ((t (:background "purple" :foreground= "white" >> =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 = =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 :weight bold)))) >> =C2=A0 =C2=A0 (paren-face-no-match ((t (:background "purple" :foreground= "white" >> =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 = =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 :weight bold)))) >> =C2=A0 =C2=A0 (show-paren-match-face ((t (:background "chartreuse")))) >> =C2=A0 =C2=A0 (show-paren-mismatch-face ((t (:background "purple" :foreg= round "white" >> =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 = =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0:weight bold)))) >> >> =C2=A0 =C2=A0 ;; shell >> =C2=A0 =C2=A0 (shell-prompt-face ((t (:weight bold :foreground "yellow")= ))) >> =C2=A0 =C2=A0 (shell-option-face ((t (:foreground "forest green")))) >> =C2=A0 =C2=A0 (shell-output-face ((t (:foreground "black")))) >> =C2=A0 =C2=A0 (shell-output-2-face ((t (:foreground "blue")))) >> =C2=A0 =C2=A0 (shell-output-3-face ((t (:foreground "purple")))) >> >> =C2=A0 =C2=A0 ;; speedbar >> =C2=A0 =C2=A0 (speedbar-button-face ((t (:foreground "green4")))) >> =C2=A0 =C2=A0 (speedbar-directory-face ((t (:foreground "blue4")))) >> =C2=A0 =C2=A0 (speedbar-file-face ((t (:foreground "cyan4")))) >> =C2=A0 =C2=A0 (speedbar-highlight-face ((t (:background "green")))) >> =C2=A0 =C2=A0 (speedbar-selected-face ((t (:underline t :foreground "red= ")))) >> =C2=A0 =C2=A0 (speedbar-tag-face ((t (:foreground "brown")))) >> >> =C2=A0 =C2=A0 ;; tool-bar >> =C2=A0 =C2=A0 (tool-bar ((t (:background "gray75" :foreground "black" :b= ox >> =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 = =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0(:line-width 1 :style released-but= ton))))) >> >> =C2=A0 =C2=A0 ;; tooltip >> =C2=A0 =C2=A0 (tooltip ((t (:background "lightyellow" :foreground "black= ")))) >> >> =C2=A0 =C2=A0 ;; show trailing whitespace >> =C2=A0 =C2=A0 (trailing-whitespace ((t (:background "LemonChiffon")))) >> >> =C2=A0 =C2=A0 ;; mouseless browsing >> =C2=A0 =C2=A0 (w3m-link-numbering ((t (:foreground "rgb:B4/C7/EB")))) >> >> =C2=A0 =C2=A0 ;; w3m >> =C2=A0 =C2=A0 (w3m-anchor ((t (:foreground "blue")))) >> =C2=A0 =C2=A0 (w3m-current-anchor ((t (:foreground "blue" :weight bold := underline t)))) >> =C2=A0 =C2=A0 (w3m-arrived-anchor ((t (:foreground "purple1")))) >> =C2=A0 =C2=A0 (w3m-form ((t (:foreground "tan1" :underline t)))) >> =C2=A0 =C2=A0 (w3m-bold ((t (:foreground "medium sea green" :weight bold= )))) >> >> =C2=A0 =C2=A0 (w3m-header-line-location-content-face ((t (:foreground "p= urple2")))) >> =C2=A0 =C2=A0 (w3m-header-line-location-title-face ((t (:foreground "cad= et blue")))) >> =C2=A0 =C2=A0 (w3m-image-face ((t (:foreground "DarkSeaGreen2" :weight b= old)))) >> =C2=A0 =C2=A0 (w3m-strike-through-face ((t (:strike-through t)))) >> =C2=A0 =C2=A0 (w3m-underline-face ((t (:underline t)))) >> ;;; =C2=A0 =C2=A0 =C2=A0(w3m-tab-background-face ((t (:background "rgb:2= 1/36/4B")))) >> ;;; =C2=A0 =C2=A0 =C2=A0(w3m-tab-selected-face ((t (:background "Gray85"= :foreground "black" :box (:line-width 1 :style nil))))) >> ;;; =C2=A0 =C2=A0 =C2=A0(w3m-tab-selected-retrieving-face ((t (:backgrou= nd "Gray85" :foreground "white" :box (:line-width -1 :style nil))))) >> ;;; =C2=A0 =C2=A0 =C2=A0(w3m-tab-unselected-face ((t (:background "Gray7= 0" :foreground "Gray20" :box (:line-width 1 :style nil))))) >> ;;; =C2=A0 =C2=A0 =C2=A0(w3m-tab-unselected-retrieving-face ((t (:backgr= ound "Gray50" :foreground "white" :box (:line-width -1 :style nil))))) >> =C2=A0 =C2=A0 (w3m-bitmap-image-face ((t (:foreground "gray4" :backgroun= d "green")))) >> ;;; =C2=A0 =C2=A0 =C2=A0(w3m-form-button-face ((t (:background "lightgra= y" :foreground "black")))) >> =C2=A0 =C2=A0 (w3m-form-button-face ((t (:foreground "gray4" :background= "light gray" :weight bold :underline t)))) >> ;;; =C2=A0 =C2=A0 =C2=A0(w3m-form-button-mouse-face ((t (:background "or= ange")))) >> =C2=A0 =C2=A0 (w3m-form-button-mouse-face ((t (:background "DarkGreen" := foreground "light gray" :underline t)))) >> ;;; =C2=A0 =C2=A0 =C2=A0(w3m-form-button-pressed-face ((t (:background "= yellow")))) >> =C2=A0 =C2=A0 (w3m-form-button-pressed-face ((t (:foreground "gray4" :ba= ckground "light gray" :weight bold :underline t)))) >> ;;; =C2=A0 =C2=A0 =C2=A0(w3m-history-current-url-face ((t (:background "= SkyBlue4" :foreground "LightSkyBlue")))) >> =C2=A0 =C2=A0 (w3m-history-current-url-face ((t (:foreground "lemon chif= fon")))) >> >> >> =C2=A0 =C2=A0 ;; IRC >> =C2=A0 =C2=A0 (circe-originator-face ((t (:foreground "blue")))) >> =C2=A0 =C2=A0 (circe-highlight-all-nicks-face ((t (:foreground "blue")))= ) ; other nicks >> =C2=A0 =C2=A0 (circe-highlight-nick-face ((t (:foreground "firebrick")))= ) ; message with my nick cited >> =C2=A0 =C2=A0 (lui-highlight-face ((t (:foreground "red")))) ; my nick >> =C2=A0 =C2=A0 (circe-my-message-face ((t (:foreground "red")))) >> =C2=A0 =C2=A0 (lui-time-stamp-face ((t (:foreground "orange")))) >> =C2=A0 =C2=A0 (lui-button-face ((t (:foreground "blue" :underline t)))) >> >> =C2=A0 =C2=A0 ))) >> >> (provide 'color-theme-sva) >> >> ;;; color-theme-sva.el ends here >> --8<---------------cut here---------------end--------------->8--- >> >> Any comment is welcome! >> >> Best regards, >> =C2=A0Seb >> >> -- >> S=C3=A9bastien 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 >> > > > _______________________________________________ > 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