]> git.eshelyaron.com Git - emacs.git/commitdiff
* themes/leuven-theme.el: New theme.
authorFabrice Niessen <fniessen@pirilampo.org>
Thu, 6 Dec 2012 02:52:22 +0000 (10:52 +0800)
committerChong Yidong <cyd@gnu.org>
Thu, 6 Dec 2012 02:52:22 +0000 (10:52 +0800)
etc/ChangeLog
etc/themes/leuven-theme.el [new file with mode: 0644]

index 909dd3604279e55e913eebb558158021f3ce0652..16b84914c846c526063a8e38f3666f4cef673946 100644 (file)
@@ -1,3 +1,7 @@
+2012-12-06  Fabrice Niessen  <fniessen@pirilampo.org>
+
+       * themes/leuven-theme.el: New theme.
+
 2012-12-04  Michael Albinus  <michael.albinus@gmx.de>
 
        * NEWS: Mention new Tramp method "adb".
diff --git a/etc/themes/leuven-theme.el b/etc/themes/leuven-theme.el
new file mode 100644 (file)
index 0000000..4387dff
--- /dev/null
@@ -0,0 +1,595 @@
+;;; leuven-theme.el --- Emacs custom theme\r
+\r
+;; Copyright (C) 2003-2012 Fabrice Niessen\r
+;; Time-stamp: <2012-12-05 Wed 10:47>\r
+\r
+;; Author: Fabrice Niessen <(concat "fniessen" at-sign "pirilampo.org")>\r
+\r
+;; This file is part of GNU Emacs.\r
+\r
+;; GNU Emacs is free software: you can redistribute it and/or modify\r
+;; it under the terms of the GNU General Public License as published by\r
+;; the Free Software Foundation, either version 3 of the License, or\r
+;; (at your option) any later version.\r
+\r
+;; GNU Emacs is distributed in the hope that it will be useful,\r
+;; but WITHOUT ANY WARRANTY; without even the implied warranty of\r
+;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\r
+;; GNU General Public License for more details.\r
+\r
+;; You should have received a copy of the GNU General Public License\r
+;; along with GNU Emacs.  If not, see <http://www.gnu.org/licenses/>.\r
+\r
+;;; Code:\r
+\r
+(deftheme leuven\r
+  "Face colors with a light background.\r
+Basic, Font Lock, Isearch, Gnus, Message, Diff, Ediff, Flyspell,\r
+Semantic, and Ansi-Color faces are included -- and much more...")\r
+\r
+(let ((class '((class color) (min-colors 89)))\r
+      ;; Leuven generic colors\r
+      (cancel '(:slant italic :strike-through t :foreground "gray55"))\r
+      (clock-line '(:box (:line-width 1 :color "#335EA8") :foreground "black" :background "#EEC900"))\r
+      (code-block '(:foreground "#000088" :background "#FBF9EA"))\r
+      (code-inline '(:box (:line-width 1 :color "#DDDDDD") :foreground "#000088" :background "#FFFFE0"))\r
+      (column '(:height 1.0 :weight normal :slant normal :underline nil :strike-through nil :foreground "#E6AD4F" :background "#FFF2DE"))\r
+      (diff-added '(:foreground "#008000" :background "#DDFFDD"))\r
+      (diff-hunk-header '(:box (:line-width 1 :color "#FFE0FF") :foreground "#990099" :background "#FFEEFF"))\r
+      (diff-none '(:foreground "gray33"))\r
+      (diff-removed '(:foreground "#A60000" :background "#FFDDDD"))\r
+      (directory '(:weight bold :foreground "blue" :background "#FFFFD2"))\r
+      (highlight-line '(:inverse-video t))\r
+      (link '(:underline t :foreground "#006DAF"))\r
+      (mail-header-name '(:weight bold :foreground "black"))\r
+      (marked-line '(:weight bold :foreground "white" :background "red"))\r
+      (match '(:background "#FFFF99"))\r
+      (ol1 '(:height 1.3 :weight bold :overline "#A7A7A7" :foreground "#3C3C3C" :background "#F0F0F0"))\r
+      (ol2 '(:height 1.0 :weight bold :overline "#123555" :foreground "#123555" :background "#E5F4FB"))\r
+      (ol3 '(:height 1.0 :weight bold :overline "#005522" :foreground "#005522" :background "#EFFFEF"))\r
+      (ol4 '(:height 1.0 :weight bold :slant normal :foreground "#EA6300"))\r
+      (ol5 '(:height 1.0 :weight bold :slant normal :foreground "#E3258D"))\r
+      (ol6 '(:height 1.0 :weight bold :slant italic :foreground "#0077CC"))\r
+      (ol7 '(:height 1.0 :weight bold :slant italic :foreground "#2EAE2C"))\r
+      (ol8 '(:height 1.0 :weight bold :slant italic :foreground "#FD8008"))\r
+      (region '(:background "#D2D9E0"))\r
+      (shadow '(:foreground "#7F7F7F"))\r
+      (string '(:foreground "#008000"))\r
+      (subject '(:weight bold :foreground "#CF5D60"))\r
+      (symlink '(:foreground "deep sky blue"))\r
+      (vc-branch '(:box (:line-width 1 :color "#00CC33") :foreground "black" :background "#AAFFAA")))\r
+\r
+  (custom-theme-set-faces\r
+   'leuven\r
+   `(default ((,class (:background "#ffffff" :foreground "#333333"))))\r
+   `(bold ((,class (:weight bold :foreground "black"))))\r
+   `(bold-italic ((,class (:weight bold :slant italic :foreground "black"))))\r
+   `(italic ((,class (:slant italic :foreground "#1A1A1A"))))\r
+   `(underline ((,class (:underline t))))\r
+   `(cursor ((,class (:background "#15ff00"))))\r
+   ;; Highlighting faces\r
+   `(fringe ((,class (:foreground "#808080" :background "#DDEEFF"))))\r
+   `(highlight ((,class (:background "#FFFF00"))))\r
+   `(region ((t ,region)))\r
+   `(secondary-selection ((t ,match))) ;; used by Org-mode for highlighting matched entries and keywords\r
+   `(isearch ((,class (:weight bold :foreground "#00AA00" :background "#99FF99"))))\r
+   `(isearch-fail ((,class (:weight bold :foreground "black" :background "#FF9999"))))\r
+   `(lazy-highlight ((,class (:weight bold :foreground "#990099" :background "#FF66FF"))))\r
+   `(trailing-whitespace ((t (:background "#F6EBFE"))))\r
+   `(whitespace-line ((t (:foreground "#CC0000" :background "#FFFF88"))))\r
+   `(whitespace-tab  ((t (:foreground "lightgray" :background "beige"))))\r
+   `(whitespace-indentation ((t (:foreground "firebrick" :background "yellow"))))\r
+   `(whitespace-trailing ((t (:weight bold :foreground "yellow" :background "red1"))))\r
+   `(whitespace-hspace ((t (:background "#CCE8F6"))))\r
+   ;; Mode line faces\r
+   `(mode-line ((,class (:box (:line-width 1 :color "#1A2F54") :foreground "#85CEEB" :background "#335EA8"))))\r
+   `(mode-line-inactive ((,class (:box (:line-width 1 :color "#4E4E4C") :foreground "#F0F0EF" :background "#9B9C97"))))\r
+   `(mode-line-buffer-id ((,class (:weight bold :foreground "white"))))\r
+   `(mode-line-emphasis ((,class (:weight bold :foreground "white"))))\r
+   `(mode-line-highlight ((,class (:foreground "yellow"))))\r
+   ;; Escape and prompt faces\r
+   `(minibuffer-prompt ((,class (:weight bold :foreground "black" :background "gold"))))\r
+   `(minibuffer-noticeable-prompt ((,class (:weight bold :foreground "black" :background "gold"))))\r
+   `(escape-glyph ((,class (:foreground "#008ED1"))))\r
+   `(error ((,class (:foreground "red"))))\r
+   `(warning ((,class (:foreground "orange"))))\r
+   `(success ((,class (:foreground "green"))))\r
+   ;; Font lock faces\r
+   `(font-lock-builtin-face ((,class (:foreground "#FF5803"))))\r
+   `(font-lock-comment-delimiter-face ((,class (:foreground "#EE0000"))))\r
+   `(font-lock-comment-face ((,class (:slant italic :foreground "#EE0000"))))\r
+   `(font-lock-constant-face ((,class (:foreground "#009944"))))\r
+   `(font-lock-doc-face ((,class (:foreground "#BA2121"))))\r
+   `(font-lock-doc-string-face ((,class (:foreground "#63639C"))))\r
+   `(font-lock-function-name-face ((,class (:foreground "#1A50B8"))))\r
+   `(font-lock-keyword-face ((,class (:bold t :foreground "#A535AE"))))\r
+   `(font-lock-preprocessor-face ((,class (:bold t :foreground "#A3A3A3"))))\r
+   `(font-lock-reference-face ((,class (:foreground "dark cyan"))))\r
+   `(font-lock-regexp-grouping-backslash ((,class (:bold t :weight bold))))\r
+   `(font-lock-regexp-grouping-construct ((,class (:bold t :weight bold))))\r
+   `(font-lock-string-face ((t ,string)))\r
+   `(font-lock-type-face ((,class (:foreground "#1B781F"))))\r
+   `(font-lock-variable-name-face ((,class (:foreground "#2E91AF"))))\r
+   `(font-lock-warning-face ((,class (:weight bold :foreground "red"))))\r
+   ;; Button and link faces\r
+   `(link ((,class (:foreground "#8ac6f2" :underline t))))\r
+   `(link-visited ((,class (:foreground "#e5786d" :underline t))))\r
+   `(button ((,class (:underline t :foreground "#006DAF"))))\r
+   `(header-line ((,class (:weight bold :underline "black" :overline "black" :foreground "black" :background "#FFFF88"))))\r
+   ;; Gnus faces\r
+   `(gnus-group-news-1-empty ((,class (:foreground "#5050B0"))))\r
+   `(gnus-group-news-1 ((,class (:weight bold :foreground "#FF50B0"))))\r
+   `(gnus-group-news-2-empty ((,class (:foreground "#660066"))))\r
+   `(gnus-group-news-2 ((,class (:weight bold :foreground "#FF0066"))))\r
+   `(gnus-group-news-3-empty ((,class (:foreground "#808080"))))\r
+   `(gnus-group-news-3 ((,class (:weight bold :foreground "black"))))\r
+   `(gnus-group-news-4-empty ((,class (:foreground "#990000"))))\r
+   `(gnus-group-news-4 ((,class (:weight bold :foreground "#FF0000"))))\r
+   `(gnus-group-news-5-empty ((,class (:foreground "#000099"))))\r
+   `(gnus-group-news-5 ((,class (:weight bold :foreground "#FF0099"))))\r
+   `(gnus-group-news-6-empty ((,class (:foreground "#808080"))))\r
+   `(gnus-group-news-6 ((,class (:weight bold :foreground "gray50"))))\r
+   `(gnus-group-mail-1-empty ((,class (:foreground "#5050B0"))))\r
+   `(gnus-group-mail-1 ((,class (:weight bold :foreground "#FF50B0"))))\r
+   `(gnus-group-mail-2-empty ((,class (:foreground "#660066"))))\r
+   `(gnus-group-mail-2 ((,class (:weight bold :foreground "#FF0066"))))\r
+   `(gnus-group-mail-3-empty ((,class (:foreground "#808080"))))\r
+   `(gnus-group-mail-3 ((,class (:weight bold :foreground "black"))))\r
+   `(gnus-group-mail-low-empty ((t ,cancel)))\r
+   `(gnus-group-mail-low ((t ,cancel)))\r
+   `(gnus-header-content ((,class (:family "Sans Serif" :foreground "#786FB4"))))\r
+   `(gnus-header-from ((,class (:family "Sans Serif" :foreground "blue"))))\r
+   `(gnus-header-subject ((t ,subject)))\r
+   `(gnus-header-name ((t ,mail-header-name)))\r
+   `(gnus-header-newsgroups ((,class (:family "Sans Serif" :foreground "#3399CC"))))\r
+   ;; Message faces\r
+   `(message-header-name ((t ,mail-header-name)))\r
+   `(message-header-cc ((,class (:family "Sans Serif" :foreground "blue"))))\r
+   `(message-header-other ((,class (:family "Sans Serif" :foreground "#3399CC"))))\r
+   `(message-header-subject ((t ,subject)))\r
+   `(message-header-to ((,class (:family "Sans Serif" :foreground "blue"))))\r
+   `(message-cited-text ((,class (:foreground "#5050B0"))))\r
+   `(message-separator ((,class (:family "Sans Serif" :weight bold :foreground "red"))))\r
+   `(message-header-newsgroups ((,class (:family "Sans Serif" :foreground "#3399CC"))))\r
+   `(message-header-xheader ((,class (:foreground "red"))))\r
+   `(message-mml ((,class (:foreground "forest green"))))\r
+   ;; Diff\r
+   `(diff-added ((t ,diff-added)))\r
+   `(diff-changed ((,class (:foreground "blue" :background "#DDDDFF"))))\r
+   `(diff-context ((t ,diff-none)))\r
+   `(diff-file-header ((,class (:foreground "#0000CC" :background "#EAF2F5"))))\r
+   `(diff-file1-hunk-header  ((,class (:foreground "dark magenta" :background "#EAF2F5"))))\r
+   `(diff-file2-hunk-header  ((,class (:foreground "#2B7E2A" :background "#EAF2F5"))))\r
+   `(diff-header ((,class (:foreground "#999999" :background "#EAF2F5"))))\r
+   `(diff-hunk-header ((t ,diff-hunk-header)))\r
+   `(diff-index ((,class (:family "Sans Serif" :height 1.1 :weight bold :foreground "#4183C4" :background "#EAF2F5"))))\r
+   `(diff-indicator-added ((,class (:background "#AAFFAA"))))\r
+   `(diff-indicator-changed ((,class (:background "#AAAAFF"))))\r
+   `(diff-indicator-removed ((,class (:background "#FFAAAA"))))\r
+   `(diff-refine-change ((,class (:background "#DDDDFF"))))\r
+   `(diff-removed ((t ,diff-removed)))\r
+   ;; SMerge\r
+   `(smerge-refined-change ((,class (:background "#AAAAFF"))))\r
+   ;; Ediff\r
+   `(ediff-current-diff-A ((,class (:foreground "gray33" :background "#FFDDDD"))))\r
+   `(ediff-current-diff-B ((,class (:foreground "gray33" :background "#DDFFDD"))))\r
+   `(ediff-current-diff-C ((,class (:foreground "black" :background "cyan"))))\r
+   `(ediff-even-diff-A ((,class (:foreground "black" :background "light grey"))))\r
+   `(ediff-even-diff-B ((,class (:foreground "black" :background "light grey"))))\r
+   `(ediff-fine-diff-A ((,class (:foreground "#A60000" :background "#FFAAAA"))))\r
+   `(ediff-fine-diff-B ((,class (:foreground "#008000" :background "#55FF55"))))\r
+   `(ediff-odd-diff-A ((,class (:foreground "black" :background "light grey"))))\r
+   `(ediff-odd-diff-B ((,class (:foreground "black" :background "light grey"))))\r
+   ;; Flyspell\r
+   `(flyspell-duplicate ((,class (:underline "#008000"))))\r
+   `(flyspell-incorrect ((,class (:underline "red"))))\r
+   ;; ;; Semantic faces\r
+   ;; `(semantic-decoration-on-includes ((,class (:underline  ,cham-4))))\r
+   ;; `(semantic-decoration-on-private-members-face ((,class (:background ,alum-2))))\r
+   ;; `(semantic-decoration-on-protected-members-face ((,class (:background ,alum-2))))\r
+   ;; `(semantic-decoration-on-unknown-includes ((,class (:background ,choc-3))))\r
+   ;; `(semantic-decoration-on-unparsed-includes ((,class (:underline  ,orange-3))))\r
+   ;; `(semantic-tag-boundary-face ((,class (:overline   ,blue-1))))\r
+   ;; `(semantic-unmatched-syntax-face ((,class (:underline  ,red-1))))\r
+\r
+   `(Info-title-1-face ((t ,ol1)))\r
+   `(Info-title-2-face ((t ,ol2)))\r
+   `(Info-title-3-face ((t ,ol3)))\r
+   `(Info-title-4-face ((t ,ol4)))\r
+   `(bbdb-company ((,class (:slant italic :foreground "steel blue"))))\r
+   `(bbdb-field-name ((,class (:weight bold :foreground "steel blue"))))\r
+   `(bbdb-field-value ((,class (:foreground "steel blue"))))\r
+   `(bbdb-name ((,class (:underline t :foreground "#FF6633"))))\r
+   `(browse-kill-ring-separator-face ((,class (:weight bold :foreground "slate gray"))))\r
+   `(calendar-today ((,class (:weight bold :background "#CCCCFF"))))\r
+   `(cfw:face-annotation ((,class (:foreground "RosyBrown" :inherit cfw:face-day-title))))\r
+   `(cfw:face-day-title ((,class (:background "#F8F9FF"))))\r
+   `(cfw:face-default-content ((,class (:foreground "#2952A3"))))\r
+   `(cfw:face-default-day ((,class (:weight bold :inherit cfw:face-day-title))))\r
+   `(cfw:face-disable ((,class (:foreground "DarkGray" :inherit cfw:face-day-title))))\r
+   `(cfw:face-grid ((,class (:foreground "SlateBlue"))))\r
+   `(cfw:face-header ((,class (:foreground "blue" :background "#D4E5FF" :weight bold))))\r
+   `(cfw:face-holiday ((,class (:background "#FFD5E5"))))\r
+   `(cfw:face-periods ((,class (:background "#668CD9" :foreground "white" :slant italic))))\r
+   `(cfw:face-saturday ((,class (:foreground "SlateGray4" :background "gray90" :weight bold))))\r
+   `(cfw:face-select ((,class (:background "#C3C9F8"))))\r
+   `(cfw:face-sunday ((,class (:foreground "red2" :background "#FFD5E5" :weight bold))))\r
+   `(cfw:face-title ((,class (:foreground "DarkGrey" :weight bold :height 2.0 :inherit variable-pitch))))\r
+   `(cfw:face-today ((,class (:background "#FFF7D7"))))\r
+   `(cfw:face-today-title ((,class (:background "#FAD163"))))\r
+   `(cfw:face-toolbar ((,class (:foreground "gray90" :background "gray90"))))\r
+   `(cfw:face-toolbar-button-off ((,class (:foreground "LightSkyBlue4" :background "white"))))\r
+   `(cfw:face-toolbar-button-on ((,class (:foreground "LightPink3" :background "gray94"))))\r
+   `(change-log-date-face ((,class (:foreground "purple"))))\r
+   `(change-log-file ((,class (:weight bold :foreground "#4183C4"))))\r
+   `(circe-highlight-all-nicks-face ((,class (:foreground "blue" :background "#F0F0F0")))) ;; other nick names\r
+   `(circe-highlight-nick-face ((,class (:foreground "#009300" :background "#F0F0F0")))) ;; messages with my nick cited\r
+   `(circe-my-message-face ((,class (:foreground "#8B8B8B" :background "#F0F0F0"))))\r
+   `(circe-originator-face ((,class (:foreground "blue"))))\r
+   `(circe-prompt-face ((,class (:foreground "red"))))\r
+   `(circe-server-face ((,class (:foreground "#99CAE5"))))\r
+   `(comint-highlight-input ((t ,code-block)))\r
+   `(comint-highlight-prompt ((,class (:foreground "#008ED1" :background "#EAEAFF"))))\r
+   `(compare-windows ((,class (:background "#FFFF00"))))\r
+   `(compilation-error ((,class (:weight bold :foreground "red"))))\r
+   `(compilation-info ((,class (:weight bold :foreground "#2A489E")))) ;; used for grep\r
+   `(compilation-line-number ((,class (:bold t :foreground "#A535AE"))))\r
+   `(compilation-warning ((,class (:weight bold :foreground "orange"))))\r
+   `(css-property ((,class (:foreground "#00AA00"))))\r
+   `(css-selector ((,class (:weight bold :foreground "blue"))))\r
+   `(custom-button ((,class (:background "lightgrey" :foreground "black" :box (:line-width 2 :style released-button)))))\r
+   `(custom-button-mouse ((,class (:background "grey90" :foreground "black" :box (:line-width 2 :style released-button)))))\r
+   `(custom-button-pressed ((,class (:foreground "black" :background "light grey" :box (:line-width 2 :style pressed-button)))))\r
+   `(custom-button-pressed-unraised ((,class (:underline t :foreground "magenta4"))))\r
+   `(custom-button-unraised ((,class (:underline t))))\r
+   `(custom-changed ((,class (:foreground "white" :background "blue"))))\r
+   `(custom-comment ((,class (:background "gray85"))))\r
+   `(custom-comment-tag ((,class (:foreground "blue4"))))\r
+   `(custom-documentation ((,class (nil))))\r
+   `(custom-face-tag ((,class (:family "Sans Serif" :weight bold :height 1.2))))\r
+   `(custom-group-tag ((,class (:bold t :foreground "blue1" :weight bold :height 1.2))))\r
+   `(custom-group-tag-1 ((,class (:bold t :family "Sans Serif" :foreground "red1" :weight bold :height 1.2))))\r
+   `(custom-invalid ((,class (:foreground "yellow" :background "red"))))\r
+   `(custom-link ((,class (:underline t :foreground "blue1"))))\r
+   `(custom-modified ((,class (:foreground "white" :background "blue"))))\r
+   `(custom-rogue ((,class (:foreground "pink" :background "black"))))\r
+   `(custom-saved ((,class (:underline t))))\r
+   `(custom-set ((,class (:foreground "blue" :background "white"))))\r
+   `(custom-state ((,class (:foreground "green4"))))\r
+   `(custom-themed ((,class (:background "blue1" :foreground "white"))))\r
+   `(custom-variable-button ((,class (:weight bold :underline t))))\r
+   `(custom-variable-tag ((,class (:bold t :family "Sans Serif" :foreground "blue1" :weight bold :height 1.2))))\r
+   `(diary-face ((,class (:foreground "#87C9FC"))))\r
+   `(dircolors-face-asm ((,class (:foreground "black"))))\r
+   `(dircolors-face-backup ((,class (:foreground "black"))))\r
+   `(dircolors-face-compress ((,class (:foreground "red"))))\r
+   `(dircolors-face-dir ((t ,directory)))\r
+   `(dircolors-face-doc ((,class (:foreground "black"))))\r
+   `(dircolors-face-dos ((,class (:foreground "green3"))))\r
+   `(dircolors-face-emacs ((,class (:foreground "black"))))\r
+   `(dircolors-face-exec ((,class (:foreground "green3"))))\r
+   `(dircolors-face-html ((,class (:foreground "black"))))\r
+   `(dircolors-face-img ((,class (:foreground "black"))))\r
+   `(dircolors-face-lang ((,class (:foreground "black"))))\r
+   `(dircolors-face-lang-interface ((,class (:foreground "black"))))\r
+   `(dircolors-face-make ((,class (:foreground "black"))))\r
+   `(dircolors-face-objet ((,class (:foreground "black"))))\r
+   `(dircolors-face-package ((,class (:foreground "red"))))\r
+   `(dircolors-face-paddb ((,class (:foreground "black"))))\r
+   `(dircolors-face-ps ((,class (:foreground "black"))))\r
+   `(dircolors-face-sound ((,class (:foreground "black"))))\r
+   `(dircolors-face-tar ((,class (:foreground "red"))))\r
+   `(dircolors-face-text ((,class (:foreground "black"))))\r
+   `(dircolors-face-yacc ((,class (:foreground "black"))))\r
+   `(dired-directory ((t ,directory)))\r
+   `(dired-header ((t ,directory)))\r
+   `(dired-ignored ((,class (:strike-through t :foreground "red"))))\r
+   `(dired-mark ((t ,marked-line)))\r
+   `(dired-marked ((t ,marked-line)))\r
+   `(dired-symlink ((t ,symlink)))\r
+   `(diredp-compressed-file-suffix ((,class (:foreground "red"))))\r
+   `(diredp-date-time ((,class (:foreground "purple"))))\r
+   `(diredp-dir-heading ((t ,directory)))\r
+   `(diredp-dir-priv ((t ,directory)))\r
+   `(diredp-exec-priv ((,class (:background "#03C03C"))))\r
+   `(diredp-executable-tag ((,class (:foreground "green3" :background "white"))))\r
+   `(diredp-file-name ((,class (:foreground "black"))))\r
+   `(diredp-file-suffix ((,class (:foreground "#008000"))))\r
+   `(diredp-flag-mark-line ((t ,marked-line)))\r
+   `(diredp-ignored-file-name ((,class (:strike-through t :foreground "red"))))\r
+   `(diredp-read-priv ((,class (:background "#0A99FF"))))\r
+   `(diredp-write-priv ((,class (:foreground "white" :background "#FF4040"))))\r
+   `(file-name-shadow ((t ,shadow)))\r
+   `(font-latex-bold-face ((,class (:weight bold :foreground "medium sea green"))))\r
+   `(font-latex-math-face ((,class (:foreground "blue"))))\r
+   `(font-latex-sectioning-1-face ((,class (:family "Sans Serif" :height 2.7 :weight bold :foreground "cornflower blue"))))\r
+   `(font-latex-sectioning-2-face ((t ,ol1)))\r
+   `(font-latex-sectioning-3-face ((t ,ol2)))\r
+   `(font-latex-sectioning-4-face ((t ,ol3)))\r
+   `(font-latex-sectioning-5-face ((t ,ol4)))\r
+   `(font-latex-sedate-face ((,class (:foreground "#FF5803"))))\r
+   `(font-latex-string-face ((,class (:bold t :foreground "#0066FF"))))\r
+   `(font-latex-verbatim-face ((,class (:foreground "tan1"))))\r
+   `(gnus-cite-attribution-face ((,class (:foreground "#5050B0"))))\r
+   `(gnus-cite-face-1 ((,class (:foreground "#5050B0"))))\r
+   `(gnus-cite-face-10 ((,class (:foreground "#990000"))))\r
+   `(gnus-cite-face-2 ((,class (:foreground "#660066"))))\r
+   `(gnus-cite-face-3 ((,class (:foreground "#007777"))))\r
+   `(gnus-cite-face-4 ((,class (:foreground "#990000"))))\r
+   `(gnus-cite-face-5 ((,class (:foreground "#000099"))))\r
+   `(gnus-cite-face-6 ((,class (:foreground "#BB6600"))))\r
+   `(gnus-cite-face-7 ((,class (:foreground "#5050B0"))))\r
+   `(gnus-cite-face-8 ((,class (:foreground "#660066"))))\r
+   `(gnus-cite-face-9 ((,class (:foreground "#007777"))))\r
+   `(gnus-emphasis-bold ((,class (:weight bold))))\r
+   `(gnus-emphasis-highlight-words ((,class (:foreground "yellow" :background "black"))))\r
+   `(gnus-picon ((,class (:foreground "yellow" :background "white"))))\r
+   `(gnus-picon-xbm ((,class (:foreground "yellow" :background "white"))))\r
+   `(gnus-signature ((,class (:foreground "#7F7F7F"))))\r
+   `(gnus-splash ((,class (:foreground "#FF8C00"))))\r
+   `(gnus-summary-cancelled ((t ,cancel)))\r
+   `(gnus-summary-high-ancient ((,class (:weight normal :foreground "#808080" :background "#FFFFE6"))))\r
+   `(gnus-summary-high-read ((,class (:weight normal :foreground "#808080" :background "#FFFFE6"))))\r
+   `(gnus-summary-high-ticked ((,class (:weight normal :foreground "black" :background "#E7AEB0"))))\r
+   `(gnus-summary-high-unread ((,class (:weight normal :foreground "black" :background "#FFFFCC"))))\r
+   `(gnus-summary-low-ancient ((,class (:slant italic :foreground "gray55"))))\r
+   `(gnus-summary-low-read ((,class (:slant italic :foreground "gray55" :background "#E0E0E0"))))\r
+   `(gnus-summary-low-ticked ((,class (:slant italic :foreground "black" :background "#E7AEB0"))))\r
+   `(gnus-summary-low-unread ((,class (:slant italic :foreground "black"))))\r
+   `(gnus-summary-normal-ancient ((,class (:foreground "#808080"))))\r
+   `(gnus-summary-normal-read ((,class (:foreground "#808080"))))\r
+   `(gnus-summary-normal-ticked ((,class (:foreground "black" :background "#E7AEB0"))))\r
+   `(gnus-summary-normal-unread ((,class (:foreground "black"))))\r
+   `(gnus-summary-selected ((,class (:foreground "black" :background "#FFD0D0" :underline t))))\r
+   `(gnus-x-face ((,class (:foreground "black" :background "white"))))\r
+   `(helm-action ((,class (:foreground "#335EA8"))))\r
+   `(helm-bookmarks-su-face ((,class (:foreground "red"))))\r
+   `(helm-candidate-number ((,class (:foreground "black" :background "#FFFF66"))))\r
+   `(helm-dir-heading ((,class (:foreground "blue" :background "pink"))))\r
+   `(helm-dir-priv ((,class (:foreground "dark red" :background "light grey"))))\r
+   `(helm-ff-directory ((t ,directory)))\r
+   `(helm-ff-executable ((,class (:foreground "green3" :background "white"))))\r
+   `(helm-ff-file ((,class (:foreground "black"))))\r
+   `(helm-ff-invalid-symlink ((,class (:foreground "yellow" :background "red"))))\r
+   `(helm-ff-symlink ((t ,symlink)))\r
+   `(helm-file-name ((,class (:foreground "blue"))))\r
+   `(helm-gentoo-match-face ((,class (:foreground "red"))))\r
+   `(helm-grep-running ((,class (:weight bold :foreground "white"))))\r
+   `(helm-isearch-match ((,class (:background "#CCFFCC"))))\r
+   `(helm-match ((t ,match)))\r
+   `(helm-overlay-line-face ((,class (:underline t :foreground "white" :background "IndianRed4"))))\r
+   `(helm-selection ((t ,highlight-line)))\r
+   `(helm-source-header ((,class (:family "Sans Serif" :height 1.3 :weight bold :foreground "white" :background "#666699"))))\r
+   `(helm-visible-mark ((t ,marked-line)))\r
+   `(helm-w3m-bookmarks-face ((,class (:underline t :foreground "cyan1"))))\r
+   `(highlight-symbol-face ((,class (:background "#FFFFA0"))))\r
+   `(hl-line ((t ,highlight-line)))\r
+   `(holiday-face ((,class (:background "#B6B2AE"))))\r
+   `(html-helper-bold-face ((,class (:weight bold :foreground "black"))))\r
+   `(html-helper-italic-face ((,class (:slant italic :foreground "black"))))\r
+   `(html-helper-underline-face ((,class (:underline t :foreground "black"))))\r
+   `(html-tag-face ((,class (:foreground "blue"))))\r
+   `(info-file ((,class (:family "Sans Serif" :height 1.8 :weight bold :box (:line-width 1 :color "#0000CC") :foreground "cornflower blue" :background "LightSteelBlue1"))))\r
+   `(info-header-node ((,class (:underline t :foreground "orange")))) ;; nodes in header\r
+   `(info-header-xref ((,class (:underline t :foreground "dodger blue")))) ;; cross references in header\r
+   `(info-menu-header ((,class (:family "Sans Serif" :height 1.6 :weight bold :underline t :foreground "#00CC00")))) ;; menu titles (headers) -- major topics\r
+   `(info-menu-star ((,class (:foreground "black")))) ;; every 3rd menu item\r
+   `(info-node ((,class (:underline t :foreground "blue")))) ;; node names\r
+   `(info-quoted-name ((t ,code-inline)))\r
+   `(info-string ((t ,string)))\r
+   `(info-title-1 ((t ,ol1)))\r
+   `(info-xref ((,class (:weight bold :underline t :foreground "blue")))) ;; unvisited cross-references\r
+   `(info-xref-visited ((,class (:weight bold :foreground "magenta4")))) ;; previously visited cross-references\r
+   `(light-symbol-face ((,class (:background "#FFFFA0"))))\r
+   `(linum ((,class (:foreground "#AFB7BA" :background "#DDEEFF"))))\r
+   `(log-view-file ((,class (:foreground "#0000CC" :background "#EAF2F5"))))\r
+   `(lui-button-face ((t ,link)))\r
+   `(lui-highlight-face ((,class (:box '(:line-width 1 :color "#CC0000") :foreground "#CC0000" :background "#FFFF88")))) ;; my nickname\r
+   `(lui-time-stamp-face ((,class (:foreground "purple"))))\r
+   `(magit-branch ((t ,vc-branch)))\r
+   `(magit-diff-add ((t ,diff-added)))\r
+   `(magit-diff-del ((t ,diff-removed)))\r
+   `(magit-diff-file-header ((,class (:family "Sans Serif" :height 1.1 :weight bold :foreground "#4183C4"))))\r
+   `(magit-diff-hunk-header ((t ,diff-hunk-header)))\r
+   `(magit-diff-none ((t ,diff-none)))\r
+   `(magit-header ((,class (:foreground "white" :background "#FF4040"))))\r
+   `(magit-item-highlight ((,class (:background "#EAF2F5"))))\r
+   `(magit-item-mark ((t ,marked-line)))\r
+   `(magit-log-head-label ((,class (:box (:line-width 1 :color "blue" :style nil)))))\r
+   `(magit-log-tag-label ((,class (:box (:line-width 1 :color "#00CC00" :style nil)))))\r
+   `(magit-section-title ((,class (:family "Sans Serif" :height 1.8 :weight bold :foreground "cornflower blue"))))\r
+   `(makefile-space-face ((,class (:background "hot pink"))))\r
+   `(makefile-targets ((,class (:weight bold :foreground "blue"))))\r
+   `(match ((t ,match)))\r
+   `(mm-uu-extract ((t ,code-block)))\r
+   `(moccur-current-line-face ((,class (:background "#FFFFCC" :foreground "black"))))\r
+   `(moccur-face ((,class (:background "#FFFF99" :foreground "black"))))\r
+   `(nobreak-space ((,class (:background "#CCE8F6"))))\r
+   `(nxml-attribute-local-name-face ((,class (:foreground "magenta"))))\r
+   `(nxml-attribute-value-delimiter-face ((,class (:foreground "green4"))))\r
+   `(nxml-attribute-value-face ((,class (:foreground "green4"))))\r
+   `(nxml-comment-content-face  ((,class (:slant italic :foreground "red"))))\r
+   `(nxml-comment-delimiter-face ((,class (:foreground "red"))))\r
+   `(nxml-element-local-name ((,class (:box (:line-width 1 :color "#999999") :background "#DEDEDE" :foreground "#000088"))))\r
+   `(nxml-element-local-name-face ((,class (:foreground "blue"))))\r
+   `(nxml-processing-instruction-target-face ((,class (:foreground "purple1"))))\r
+   `(nxml-tag-delimiter-face ((,class (:foreground "blue"))))\r
+   `(nxml-tag-slash-face ((,class (:foreground "blue"))))\r
+   `(org-agenda-calendar-event ((,class (:weight bold :foreground "white" :background "#1662AF"))))\r
+   `(org-agenda-calendar-sexp ((,class (:foreground "black" :background "#80CBFF"))))\r
+   `(org-agenda-clocking ((t ,clock-line)))\r
+   `(org-agenda-column-dateline ((t ,column)))\r
+   `(org-agenda-current-time ((,class (:underline t :foreground "#1662AF"))))\r
+   `(org-agenda-date ((,class (:height 1.6 :weight normal :foreground "#0063F5"))))\r
+   `(org-agenda-date-today ((,class (:height 1.6 :weight bold :foreground "#1662AF"))))\r
+   `(org-agenda-date-weekend ((,class (:height 1.6 :weight normal :foreground "dim gray"))))\r
+   `(org-agenda-diary ((,class (:weight bold :foreground "green4" :background "light blue"))))\r
+   `(org-agenda-dimmed-todo-face ((,class (:foreground "gold2"))))\r
+   `(org-agenda-done ((,class (:foreground "#555555" :background "#EEEEEE"))))\r
+   `(org-agenda-filter-category ((,class (:weight bold :foreground "orange"))))\r
+   `(org-agenda-filter-tags ((,class (:weight bold :foreground "orange"))))\r
+   `(org-agenda-restriction-lock ((,class (:weight bold :foreground "white" :background "orange"))))\r
+   `(org-agenda-structure ((,class (:height 1.6 :weight bold :box (:line-width 1 :color "#999999") :foreground "#666666" :background "#CCCCCC"))))\r
+   `(org-archived ((,class (:foreground "gray70"))))\r
+   `(org-beamer-tag ((,class (:box (:line-width 1 :color "#FABC18") :foreground "#2C2C2C" :background "#FFF8D0"))))\r
+   `(org-block ((t ,code-block)))\r
+   `(org-block-background ((,class (:background "#FFFFE0"))))\r
+   `(org-block-begin-line ((,class (:underline "#A7A6AA" :foreground "#555555" :background "#E2E1D5"))))\r
+   `(org-block-end-line ((,class (:overline "#A7A6AA" :foreground "#555555" :background "#E2E1D5"))))\r
+   `(org-checkbox ((,class (:weight bold :foreground "white" :background "#777777" :box (:line-width 1 :style pressed-button)))))\r
+   `(org-clock-overlay ((,class (:foreground "white" :background "SkyBlue4"))))\r
+   `(org-code ((t ,code-inline)))\r
+   `(org-column ((t ,column)))\r
+   `(org-column-title ((t ,column)))\r
+   `(org-date ((,class (:underline t :foreground "#00459E"))))\r
+   `(org-default ((,class (:foreground "#333333"))))\r
+   `(org-dim ((,class (:foreground "#AAAAAA"))))\r
+   `(org-document-info ((,class (:foreground "#484848"))))\r
+   `(org-document-info-keyword ((,class (:foreground "#008ED1" :background "#EAEAFF"))))\r
+   `(org-document-title ((,class (:family "Sans Serif" :height 1.8 :weight bold :foreground "black"))))\r
+   `(org-done ((,class (:weight bold :box (:line-width 1 :color "#BBBBBB") :foreground "#BBBBBB" :background "#F0F0F0"))))\r
+   `(org-drawer ((,class (:foreground "light sky blue"))))\r
+   `(org-ellipsis ((,class (:underline "#B0EEB0" :foreground "#00BB00"))))\r
+   `(org-example ((,class (:foreground "blue" :background "#EAFFEA"))))\r
+   `(org-footnote ((,class (:underline t :foreground "#008ED1"))))\r
+   `(org-formula ((,class (:foreground "chocolate1"))))\r
+   `(org-headline-done ((,class (:height 1.0 :weight bold :strike-through "#BEBEBE" :foreground "#C5C5C5"))))\r
+   `(org-hide ((,class (:foreground "#E2E2E2"))))\r
+   `(org-inlinetask ((,class (:box (:line-width 1 :color "#EBEBEB") :foreground "#777777" :background "#FFFFD6"))))\r
+   `(org-latex-and-export-specials ((,class (:foreground "blue"))))\r
+   `(org-level-1 ((t ,ol1)))\r
+   `(org-level-2 ((t ,ol2)))\r
+   `(org-level-3 ((t ,ol3)))\r
+   `(org-level-4 ((t ,ol4)))\r
+   `(org-level-5 ((t ,ol5)))\r
+   `(org-level-6 ((t ,ol6)))\r
+   `(org-level-7 ((t ,ol7)))\r
+   `(org-level-8 ((t ,ol8)))\r
+   `(org-link ((t ,link)))\r
+   `(org-list-dt ((,class (:weight bold :foreground "#335EA8"))))\r
+   `(org-meta-line ((,class (:slant normal :foreground "#008ED1" :background "#EAEAFF"))))\r
+   `(org-mode-line-clock ((t ,clock-line)))\r
+   `(org-mode-line-clock-overrun ((,class (:weight bold :box (:line-width 1 :color "#335EA8") :foreground "white" :background "#FF4040"))))\r
+   `(org-number-of-items ((,class (:weight bold :foreground "white" :background "#79BA79"))))\r
+   `(org-property-value ((,class (:foreground "#00A000"))))\r
+   `(org-quote ((,class (:slant italic :foreground "dim gray" :background "#FFFFE0"))))\r
+   `(org-scheduled ((,class (:slant italic :foreground "#0063DC"))))\r
+   `(org-scheduled-previously ((,class (:weight bold :foreground "#373737"))))\r
+   `(org-scheduled-today ((,class (:foreground "black" :background "#FFFFCB"))))\r
+   `(org-sexp-date ((,class (:foreground "purple"))))\r
+   `(org-special-keyword ((,class (:weight bold :foreground "#00BB00" :background "#EAFFEA"))))\r
+   `(org-table ((,class (:foreground "dark green" :background "#EAFFEA"))))\r
+   `(org-tag ((,class (:height 1.0 :weight normal :slant italic :foreground "#3C424F" :background "#E5ECFA"))))\r
+   `(org-target ((,class (:underline t))))\r
+   `(org-time-grid ((,class (:foreground "#6D6D6D"))))\r
+   `(org-todo ((,class (:weight bold :box (:line-width 1 :color "#D8ABA7") :foreground "#D8ABA7" :background "#FFE6E4"))))\r
+   `(org-upcoming-deadline ((,class (:foreground "#FF5555"))))\r
+   `(org-verbatim ((,class (:box (:line-width 1 :color "#DDDDDD") :foreground "#000088" :background "#E0FFE0"))))\r
+   `(org-verse ((,class (:slant italic :foreground "dim gray" :background "#EEEEEE"))))\r
+   `(org-warning ((,class (:weight bold :foreground "black" :background "#CCE7FF"))))\r
+   `(outline-1 ((t ,ol1)))\r
+   `(outline-2 ((t ,ol2)))\r
+   `(outline-3 ((t ,ol3)))\r
+   `(outline-4 ((t ,ol4)))\r
+   `(outline-5 ((t ,ol5)))\r
+   `(outline-6 ((t ,ol6)))\r
+   `(outline-7 ((t ,ol7)))\r
+   `(outline-8 ((t ,ol8)))\r
+   `(pabbrev-debug-display-label-face ((,class (:background "chartreuse"))))\r
+   `(pabbrev-suggestions-face ((,class (:weight bold :foreground "white" :background "red"))))\r
+   `(pabbrev-suggestions-label-face ((,class (:weight bold :foreground "white" :background "purple"))))\r
+   `(paren-face-match ((,class (:foreground "white" :background "#FF3F3F"))))\r
+   `(paren-face-mismatch ((,class (:weight bold :foreground "white" :background "purple"))))\r
+   `(paren-face-no-match ((,class (:weight bold :foreground "white" :background "purple"))))\r
+   `(pp^L-highlight ((,class (:strike-through t))))\r
+   `(recover-this-file ((,class (:background "white" :background "#FF3F3F"))))\r
+   `(sh-heredoc ((,class (:foreground "blue" :background "#FBF9EA"))))\r
+   `(shadow ((t ,shadow)))\r
+   `(shell-option-face ((,class (:foreground "forest green"))))\r
+   `(shell-output-2-face ((,class (:foreground "blue"))))\r
+   `(shell-output-3-face ((,class (:foreground "purple"))))\r
+   `(shell-output-face ((,class (:foreground "black"))))\r
+   `(shell-prompt-face ((,class (:weight bold :foreground "yellow"))))\r
+   `(show-paren-match ((,class (:foreground "white" :background "#FF3F3F"))))\r
+   `(show-paren-mismatch ((,class (:weight bold :foreground "white" :background "purple"))))\r
+   `(speedbar-button-face ((,class (:foreground "green4"))))\r
+   `(speedbar-directory-face ((,class (:foreground "blue4"))))\r
+   `(speedbar-file-face ((,class (:foreground "cyan4"))))\r
+   `(speedbar-highlight-face ((,class (:background "green"))))\r
+   `(speedbar-selected-face ((,class (:underline t :foreground "red"))))\r
+   `(speedbar-tag-face ((,class (:foreground "brown"))))\r
+   `(svn-status-directory-face ((t ,directory)))\r
+   `(svn-status-filename-face ((,class (:weight bold :foreground "#4183C4"))))\r
+   `(svn-status-locked-face ((,class (:weight bold :foreground "red"))))\r
+   `(svn-status-marked-face ((t ,marked-line)))\r
+   `(svn-status-marked-popup-face ((,class (:weight bold :foreground "green3"))))\r
+   `(svn-status-switched-face ((,class (:slant italic :foreground "gray55"))))\r
+   `(svn-status-symlink-face  ((t ,symlink)))\r
+   `(svn-status-update-available-face ((,class (:foreground "orange"))))\r
+   `(tex-verbatim ((,class (:foreground "blue"))))\r
+   `(tool-bar ((,class (:box (:line-width 1 :style released-button) :foreground "black" :background "gray75"))))\r
+   `(tooltip ((,class (:foreground "black" :background "light yellow"))))\r
+   `(trailing-whitespace ((,class (:background "#F6EBFE"))))\r
+   `(traverse-match-face ((,class (:weight bold :foreground "blue violet"))))\r
+   `(vc-annotate-face-3F3FFF ((,class (:foreground "#3F3FFF" :background "black"))))\r
+   `(vc-annotate-face-3F6CFF ((,class (:foreground "#3F3FFF" :background "black"))))\r
+   `(vc-annotate-face-3F99FF ((,class (:foreground "#3F99FF" :background "black"))))\r
+   `(vc-annotate-face-3FC6FF ((,class (:foreground "#3F99FF" :background "black"))))\r
+   `(vc-annotate-face-3FF3FF ((,class (:foreground "#3FF3FF" :background "black"))))\r
+   `(vc-annotate-face-3FFF56 ((,class (:foreground "#4BFF4B" :background "black"))))\r
+   `(vc-annotate-face-3FFF83 ((,class (:foreground "#3FFFB0" :background "black"))))\r
+   `(vc-annotate-face-3FFFB0 ((,class (:foreground "#3FFFB0" :background "black"))))\r
+   `(vc-annotate-face-3FFFDD ((,class (:foreground "#3FF3FF" :background "black"))))\r
+   `(vc-annotate-face-56FF3F ((,class (:foreground "#4BFF4B" :background "black"))))\r
+   `(vc-annotate-face-83FF3F ((,class (:foreground "#B0FF3F" :background "black"))))\r
+   `(vc-annotate-face-B0FF3F ((,class (:foreground "#B0FF3F" :background "black"))))\r
+   `(vc-annotate-face-DDFF3F ((,class (:foreground "#FFF33F" :background "black"))))\r
+   `(vc-annotate-face-FF3F3F ((,class (:foreground "#FF3F3F" :background "black"))))\r
+   `(vc-annotate-face-FF6C3F ((,class (:foreground "#FF3F3F" :background "black"))))\r
+   `(vc-annotate-face-FF993F ((,class (:foreground "#FF993F" :background "black"))))\r
+   `(vc-annotate-face-FFC63F ((,class (:foreground "#FF993F" :background "black"))))\r
+   `(vc-annotate-face-FFF33F ((,class (:foreground "#FFF33F" :background "black"))))\r
+   `(w3m-anchor ((t ,link)))\r
+   `(w3m-arrived-anchor ((,class (:foreground "purple1"))))\r
+   `(w3m-bitmap-image-face ((,class (:foreground "gray4" :background "green"))))\r
+   `(w3m-bold ((,class (:weight bold :foreground "medium sea green"))))\r
+   `(w3m-current-anchor ((,class (:weight bold :underline t :foreground "blue"))))\r
+   `(w3m-form ((,class (:underline t :foreground "tan1"))))\r
+   `(w3m-form-button-face ((,class (:weight bold :underline t :foreground "gray4" :background "light grey"))))\r
+   `(w3m-form-button-mouse-face ((,class (:underline t :foreground "light grey" :background "#2B7E2A"))))\r
+   `(w3m-form-button-pressed-face ((,class (:weight bold :underline t :foreground "gray4" :background "light grey"))))\r
+   `(w3m-header-line-location-content-face ((,class (:foreground "#7F7F7F":background "#F7F7F7"))))\r
+   `(w3m-header-line-location-title-face ((,class (:foreground "#2C55B1" :background "#F7F7F7"))))\r
+   `(w3m-history-current-url-face ((,class (:foreground "lemon chiffon"))))\r
+   `(w3m-image-face ((,class (:weight bold :foreground "DarkSeaGreen2"))))\r
+   `(w3m-link-numbering ((,class (:foreground "#B4C7EB")))) ;; mouseless browsing\r
+   `(w3m-strike-through-face ((,class (:strike-through t))))\r
+   `(w3m-underline-face ((,class (:underline t))))\r
+   `(which-func ((,class (:weight bold :foreground "white"))))\r
+   `(whitespace-hspace ((,class (:background "#CCE8F6"))))\r
+   `(whitespace-indentation ((,class (:foreground "firebrick" :background "yellow"))))\r
+   `(whitespace-line ((,class (:foreground "#CC0000" :background "#FFFF88"))))\r
+   `(whitespace-tab  ((,class (:foreground "lightgray" :background "beige"))))\r
+   `(whitespace-trailing ((,class (:weight bold :foreground "yellow" :background "red1"))))\r
+   `(widget-button-face ((t ,link)))\r
+   `(widget-button-pressed-face ((,class (:foreground "red"))))\r
+   `(widget-documentation-face ((,class (:foreground "green4"))))\r
+   `(widget-field-face ((,class (:background "gray85"))))\r
+   `(widget-inactive-face ((,class (:foreground "dim gray"))))\r
+   `(widget-single-line-field-face ((,class (:background "gray85"))))\r
+   `(yas/field-debug-face ((,class (:background "ivory2"))))\r
+   `(yas/field-highlight-face ((,class (:background "DarkSeaGreen1"))))\r
+   ))\r
+\r
+(custom-theme-set-variables\r
+ 'leuven\r
+ '(ansi-color-names-vector ["#242424" "#e5786d" "#95e454" "#cae682"\r
+                            "#8ac6f2" "#333366" "#ccaa8f" "#f6f3e8"]))\r
+\r
+(provide-theme 'leuven)\r
+\r
+;; Local Variables:\r
+;; no-byte-compile: t\r
+;; End:\r
+\r
+;;; leuven-theme.el ends here\r