Allow 'browse-url-emacs' to fetch URL in the selected window
[emacs.git] / etc / themes / leuven-theme.el
blob5c0d19ce8104ca6f17389e87c2be5c22b8e5bffd
1 ;;; leuven-theme.el --- Awesome Emacs color theme on white background
3 ;; Copyright (C) 2003-2018 Free Software Foundation, Inc.
5 ;; Author: Fabrice Niessen <(concat "fniessen" at-sign "pirilampo.org")>
6 ;; URL: https://github.com/fniessen/emacs-leuven-theme
7 ;; Version: 20170912.2328
8 ;; Keywords: color theme
10 ;; This file is part of GNU Emacs.
12 ;; GNU Emacs is free software: you can redistribute it and/or modify
13 ;; it under the terms of the GNU General Public License as published by
14 ;; the Free Software Foundation, either version 3 of the License, or
15 ;; (at your option) any later version.
17 ;; GNU Emacs is distributed in the hope that it will be useful,
18 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
19 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 ;; GNU General Public License for more details.
22 ;; You should have received a copy of the GNU General Public License
23 ;; along with GNU Emacs. If not, see <https://www.gnu.org/licenses/>.
25 ;;; Commentary:
27 ;; This elegant Org-enhancing color theme "leuven" ROCKS!
28 ;; ... and not just for Org mode.
30 ;; To use it, put the following in your Emacs configuration file:
32 ;; (load-theme 'leuven t)
34 ;; Requirements: Emacs 24.
36 ;;; Code:
38 (deftheme leuven
39 "Face colors with a light background.
40 Basic, Font Lock, Isearch, Gnus, Message, Diff, Ediff, Flyspell,
41 Semantic, and Ansi-Color faces are included -- and much more...")
43 (let ((class '((class color) (min-colors 89)))
45 ;; Leuven generic colors
46 (cancel '(:slant italic :strike-through t :foreground "gray55"))
47 (clock-line '(:box (:line-width 1 :color "#335EA8") :foreground "black" :background "#EEC900"))
48 (code-block '(:foreground "#000088" :background "#FFFFE0"))
49 (code-inline '(:foreground "#006400" :background "#FDFFF7"))
50 (column '(:height 1.0 :weight normal :slant normal :underline nil :strike-through nil :foreground "#E6AD4F" :background "#FFF2DE"))
51 (diff-added '(:foreground "#008000" :background "#DDFFDD"))
52 (diff-changed '(:foreground "#0000FF" :background "#DDDDFF"))
53 (diff-header '(:foreground "#800000" :background "#FFFFAF"))
54 (diff-hunk-header '(:foreground "#990099" :background "#FFEEFF"))
55 (diff-none '(:foreground "gray33"))
56 (diff-removed '(:foreground "#A60000" :background "#FFDDDD"))
57 (directory '(:weight bold :foreground "blue" :background "#FFFFD2"))
58 (highlight-line '(:background "#FFFFD7")) ; #F5F5F5
59 (highlight-line-gnus '(:background "#DAEAFC")) ; defined in `gnus-leuven.el'
60 (link '(:weight normal :underline t :foreground "#006DAF"))
61 (mail-header-name '(:family "Sans Serif" :weight normal :foreground "#A3A3A2"))
62 (mail-header-other '(:family "Sans Serif" :slant normal :foreground "#666666"))
63 (mail-read '(:weight normal :foreground "#86878B"))
64 (mail-ticked '(:weight bold :background "#FBE6EF"))
65 (mail-to '(:family "Sans Serif" :underline nil :foreground "#006DAF"))
66 (mail-unread '(:weight bold :foreground "black"))
67 (marked-line '(:weight bold :foreground "white" :background "red"))
68 (match '(:weight bold :background "#FBE448")) ; occur patterns
69 (ol1 '(:height 1.3 :weight bold :overline "#A7A7A7" :foreground "#3C3C3C" :background "#F0F0F0"))
70 (ol2 '(:height 1.0 :weight bold :overline "#123555" :foreground "#123555" :background "#E5F4FB"))
71 (ol3 '(:height 1.0 :weight bold :foreground "#005522" :background "#EFFFEF"))
72 (ol4 '(:height 1.0 :weight bold :slant normal :foreground "#EA6300"))
73 (ol5 '(:height 1.0 :weight bold :slant normal :foreground "#E3258D"))
74 (ol6 '(:height 1.0 :weight bold :slant italic :foreground "#0077CC"))
75 (ol7 '(:height 1.0 :weight bold :slant italic :foreground "#2EAE2C"))
76 (ol8 '(:height 1.0 :weight bold :slant italic :foreground "#FD8008"))
77 (paren-matched '(:background "#99CCFF"))
78 (paren-unmatched '(:underline "red" :foreground nil :background "#FFDCDC"))
79 (region '(:background "#ABDFFA"))
80 (shadow '(:foreground "#7F7F7F"))
81 (string '(:foreground "#008000")) ; or #D0372D
82 (subject '(:family "Sans Serif" :weight bold :foreground "black"))
83 (symlink '(:foreground "deep sky blue"))
84 (volatile-highlight '(:underline nil :background "#FFF876"))
85 (vc-branch '(:box (:line-width 1 :color "#00CC33") :foreground "black" :background "#AAFFAA")))
87 (custom-theme-set-faces
88 'leuven
89 `(default ((,class (:foreground "#333333" :background "#FFFFFF"))))
90 `(bold ((,class (:weight bold :foreground "black"))))
91 `(bold-italic ((,class (:weight bold :slant italic :foreground "black"))))
92 `(italic ((,class (:slant italic :foreground "#1A1A1A"))))
93 `(underline ((,class (:underline t))))
94 `(cursor ((,class (:background "#0FB300"))))
96 ;; Highlighting faces
97 `(fringe ((,class (:foreground "#9B9B9B" :background "#EDEDED"))))
98 `(highlight ((,class ,volatile-highlight)))
99 `(region ((,class ,region)))
100 `(secondary-selection ((,class ,match))) ; used by Org-mode for highlighting matched entries and keywords
101 `(isearch ((,class (:weight bold :underline "#FF9632" :foreground nil :background "#FDBD33"))))
102 `(isearch-fail ((,class (:weight bold :foreground "black" :background "#FF9999"))))
103 `(lazy-highlight ((,class (:underline "#FF9632" :background "#FFFF00")))) ; isearch others
104 `(trailing-whitespace ((,class (:background "#FFFF57"))))
105 `(whitespace-hspace ((,class (:foreground "#D2D2D2"))))
106 `(whitespace-indentation ((,class (:foreground "#A1A1A1" :background "white"))))
107 `(whitespace-line ((,class (:foreground "#CC0000" :background "#FFFF88"))))
108 `(whitespace-tab ((,class (:foreground "#A1A1A1" :background "white"))))
109 `(whitespace-trailing ((,class (:foreground "#B3B3B3" :background "#FFFF57"))))
111 ;; Mode line faces
112 `(mode-line ((,class (:box (:line-width 1 :color "#1A2F54") :foreground "#85CEEB" :background "#335EA8"))))
113 `(mode-line-inactive ((,class (:box (:line-width 1 :color "#4E4E4C") :foreground "#F0F0EF" :background "#9B9C97"))))
114 `(mode-line-buffer-id ((,class (:weight bold :foreground "white"))))
115 `(mode-line-emphasis ((,class (:weight bold :foreground "white"))))
116 `(mode-line-highlight ((,class (:foreground "yellow"))))
118 ;; Escape and prompt faces
119 `(minibuffer-prompt ((,class (:weight bold :foreground "black" :background "gold"))))
120 `(minibuffer-noticeable-prompt ((,class (:weight bold :foreground "black" :background "gold"))))
121 `(escape-glyph ((,class (:foreground "#008ED1"))))
122 `(homoglyph ((,class (:foreground "#008ED1"))))
123 `(error ((,class (:foreground "red"))))
124 `(warning ((,class (:weight bold :foreground "orange"))))
125 `(success ((,class (:foreground "green"))))
127 ;; Font lock faces
128 `(font-lock-builtin-face ((,class (:foreground "#006FE0"))))
129 `(font-lock-comment-delimiter-face ((,class (:foreground "#8D8D84")))) ; #696969
130 `(font-lock-comment-face ((,class (:slant italic :foreground "#8D8D84")))) ; #696969
131 `(font-lock-constant-face ((,class (:foreground "#D0372D"))))
132 `(font-lock-doc-face ((,class (:foreground "#036A07"))))
133 ;; `(font-lock-doc-string-face ((,class (:foreground "#008000")))) ; XEmacs only, but is used for HTML exports from org2html (and not interactively)
134 `(font-lock-function-name-face ((,class (:weight normal :foreground "#006699"))))
135 `(font-lock-keyword-face ((,class (:bold nil :foreground "#0000FF")))) ; #3654DC
136 `(font-lock-preprocessor-face ((,class (:foreground "#808080"))))
137 `(font-lock-regexp-grouping-backslash ((,class (:weight bold :inherit nil))))
138 `(font-lock-regexp-grouping-construct ((,class (:weight bold :inherit nil))))
139 `(font-lock-string-face ((,class ,string)))
140 `(font-lock-type-face ((,class (:weight normal :foreground "#6434A3"))))
141 `(font-lock-variable-name-face ((,class (:weight normal :foreground "#BA36A5")))) ; #800080
142 `(font-lock-warning-face ((,class (:weight bold :foreground "red"))))
144 ;; Button and link faces
145 `(link ((,class ,link)))
146 `(link-visited ((,class (:underline t :foreground "#E5786D"))))
147 `(button ((,class (:underline t :foreground "#006DAF"))))
148 `(header-line ((,class (:weight bold :underline "black" :overline "black" :foreground "black" :background "#FFFF88"))))
150 ;; Gnus faces
151 `(gnus-button ((,class (:weight normal))))
152 `(gnus-cite-attribution-face ((,class (:foreground "#5050B0"))))
153 `(gnus-cite-face-1 ((,class (:foreground "#5050B0"))))
154 `(gnus-cite-face-10 ((,class (:foreground "#990000"))))
155 `(gnus-cite-face-2 ((,class (:foreground "#660066"))))
156 `(gnus-cite-face-3 ((,class (:foreground "#007777"))))
157 `(gnus-cite-face-4 ((,class (:foreground "#990000"))))
158 `(gnus-cite-face-5 ((,class (:foreground "#000099"))))
159 `(gnus-cite-face-6 ((,class (:foreground "#BB6600"))))
160 `(gnus-cite-face-7 ((,class (:foreground "#5050B0"))))
161 `(gnus-cite-face-8 ((,class (:foreground "#660066"))))
162 `(gnus-cite-face-9 ((,class (:foreground "#007777"))))
163 `(gnus-emphasis-bold ((,class (:weight bold))))
164 `(gnus-emphasis-highlight-words ((,class (:foreground "yellow" :background "black"))))
165 `(gnus-group-mail-1 ((,class (:weight bold :foreground "#FF50B0"))))
166 `(gnus-group-mail-1-empty ((,class (:foreground "#5050B0"))))
167 `(gnus-group-mail-2 ((,class (:weight bold :foreground "#FF0066"))))
168 `(gnus-group-mail-2-empty ((,class (:foreground "#660066"))))
169 `(gnus-group-mail-3 ((,class (:weight bold :foreground "black"))))
170 `(gnus-group-mail-3-empty ((,class ,mail-read)))
171 `(gnus-group-mail-low ((,class ,cancel)))
172 `(gnus-group-mail-low-empty ((,class ,cancel)))
173 `(gnus-group-news-1 ((,class (:weight bold :foreground "#FF50B0"))))
174 `(gnus-group-news-1-empty ((,class (:foreground "#5050B0"))))
175 `(gnus-group-news-2 ((,class (:weight bold :foreground "#FF0066"))))
176 `(gnus-group-news-2-empty ((,class (:foreground "#660066"))))
177 `(gnus-group-news-3 ((,class (:weight bold :foreground "black"))))
178 `(gnus-group-news-3-empty ((,class (:foreground "#808080"))))
179 `(gnus-group-news-4 ((,class (:weight bold :foreground "#FF0000"))))
180 `(gnus-group-news-4-empty ((,class (:foreground "#990000"))))
181 `(gnus-group-news-5 ((,class (:weight bold :foreground "#FF0099"))))
182 `(gnus-group-news-5-empty ((,class (:foreground "#000099"))))
183 `(gnus-group-news-6 ((,class (:weight bold :foreground "gray50"))))
184 `(gnus-group-news-6-empty ((,class (:foreground "#808080"))))
185 `(gnus-header-content ((,class ,mail-header-other)))
186 `(gnus-header-from ((,class (:family "Sans Serif" :foreground "black"))))
187 `(gnus-header-name ((,class ,mail-header-name)))
188 `(gnus-header-newsgroups ((,class (:family "Sans Serif" :foreground "#3399CC"))))
189 `(gnus-header-subject ((,class ,subject)))
190 `(gnus-picon ((,class (:foreground "yellow" :background "white"))))
191 `(gnus-picon-xbm ((,class (:foreground "yellow" :background "white"))))
192 `(gnus-server-closed ((,class (:slant italic :foreground "blue" :background "white"))))
193 `(gnus-server-denied ((,class (:weight bold :foreground "red" :background "white"))))
194 `(gnus-server-opened ((,class (:family "Sans Serif" :foreground "white" :foreground "#466BD7"))))
195 `(gnus-signature ((,class (:slant italic :foreground "#8B8D8E"))))
196 `(gnus-splash ((,class (:foreground "#FF8C00"))))
197 `(gnus-summary-cancelled ((,class ,cancel)))
198 `(gnus-summary-high-ancient ((,class (:weight normal :foreground "#808080" :background "#FFFFE6"))))
199 `(gnus-summary-high-read ((,class (:weight normal :foreground "#999999" :background "#FFFFE6"))))
200 `(gnus-summary-high-ticked ((,class ,mail-ticked)))
201 `(gnus-summary-high-unread ((,class (:weight bold :foreground "black" :background "#FFFFCC"))))
202 `(gnus-summary-low-ancient ((,class (:slant italic :foreground "gray55"))))
203 `(gnus-summary-low-read ((,class (:slant italic :foreground "#999999" :background "#E0E0E0"))))
204 `(gnus-summary-low-ticked ((,class ,mail-ticked)))
205 `(gnus-summary-low-unread ((,class (:slant italic :foreground "black"))))
206 `(gnus-summary-normal-ancient ((,class ,mail-read)))
207 `(gnus-summary-normal-read ((,class ,mail-read)))
208 `(gnus-summary-normal-ticked ((,class ,mail-ticked)))
209 `(gnus-summary-normal-unread ((,class ,mail-unread)))
210 `(gnus-summary-selected ((,class (:foreground "white" :background "#008CD7"))))
211 `(gnus-x-face ((,class (:foreground "black" :background "white"))))
213 ;; Message faces
214 `(message-header-name ((,class ,mail-header-name)))
215 `(message-header-cc ((,class ,mail-to)))
216 `(message-header-other ((,class ,mail-header-other)))
217 `(message-header-subject ((,class ,subject)))
218 `(message-header-to ((,class ,mail-to)))
219 `(message-cited-text ((,class (:foreground "#5050B0"))))
220 `(message-separator ((,class (:family "Sans Serif" :weight normal :foreground "#BDC2C6"))))
221 `(message-header-newsgroups ((,class (:family "Sans Serif" :foreground "#3399CC"))))
222 `(message-header-xheader ((,class ,mail-header-other)))
223 `(message-mml ((,class (:foreground "forest green"))))
225 ;; Diff
226 `(diff-added ((,class ,diff-added)))
227 `(diff-changed ((,class ,diff-changed)))
228 `(diff-context ((,class ,diff-none)))
229 `(diff-file-header ((,class ,diff-header)))
230 `(diff-file1-hunk-header ((,class (:foreground "dark magenta" :background "#EAF2F5"))))
231 `(diff-file2-hunk-header ((,class (:foreground "#2B7E2A" :background "#EAF2F5"))))
232 `(diff-function ((,class (:foreground "darkgray"))))
233 `(diff-header ((,class ,diff-header)))
234 `(diff-hunk-header ((,class ,diff-hunk-header)))
235 `(diff-index ((,class ,diff-header)))
236 `(diff-indicator-added ((,class (:background "#AAFFAA"))))
237 `(diff-indicator-changed ((,class (:background "#8080FF"))))
238 `(diff-indicator-removed ((,class (:background "#FFBBBB"))))
239 `(diff-refine-change ((,class (:background "#DDDDFF"))))
240 `(diff-removed ((,class ,diff-removed)))
242 ;; SMerge
243 `(smerge-refined-change ((,class (:background "#AAAAFF"))))
245 ;; Ediff
246 `(ediff-current-diff-A ((,class (:foreground "gray33" :background "#FFDDDD"))))
247 `(ediff-current-diff-B ((,class (:foreground "gray33" :background "#DDFFDD"))))
248 `(ediff-current-diff-C ((,class (:foreground "black" :background "cyan"))))
249 `(ediff-even-diff-A ((,class (:foreground "black" :background "light grey"))))
250 `(ediff-even-diff-B ((,class (:foreground "black" :background "light grey"))))
251 `(ediff-fine-diff-A ((,class (:foreground "#A60000" :background "#FFAAAA"))))
252 `(ediff-fine-diff-B ((,class (:foreground "#008000" :background "#55FF55"))))
253 `(ediff-odd-diff-A ((,class (:foreground "black" :background "light grey"))))
254 `(ediff-odd-diff-B ((,class (:foreground "black" :background "light grey"))))
256 ;; Flyspell
257 ;; (when (version< emacs-version "24.XXX")
258 `(flyspell-duplicate ((,class (:underline "#008000" :inherit nil))))
259 `(flyspell-incorrect ((,class (:underline "red" :inherit nil))))
260 ;; `(flyspell-duplicate ((,class (:underline (:style wave :color "#008000") :inherit nil))))
261 ;; `(flyspell-incorrect ((,class (:underline (:style wave :color "red") :inherit nil))))
263 ;; ;; Semantic faces
264 ;; `(semantic-decoration-on-includes ((,class (:underline ,cham-4))))
265 ;; `(semantic-decoration-on-private-members-face ((,class (:background ,alum-2))))
266 ;; `(semantic-decoration-on-protected-members-face ((,class (:background ,alum-2))))
267 ;; `(semantic-decoration-on-unknown-includes ((,class (:background ,choc-3))))
268 ;; `(semantic-decoration-on-unparsed-includes ((,class (:underline ,orange-3))))
269 ;; `(semantic-tag-boundary-face ((,class (:overline ,blue-1))))
270 ;; `(semantic-unmatched-syntax-face ((,class (:underline ,red-1))))
272 `(Info-title-1-face ((,class ,ol1)))
273 `(Info-title-2-face ((,class ,ol2)))
274 `(Info-title-3-face ((,class ,ol3)))
275 `(Info-title-4-face ((,class ,ol4)))
276 `(ac-completion-face ((,class (:underline nil :foreground "#C0C0C0")))) ; like Google
277 `(ace-jump-face-foreground ((,class (:foreground "black" :background "#FBE448"))))
278 `(auto-dim-other-buffers-face ((,class (:background "#F7F7F7"))))
279 `(bbdb-company ((,class (:slant italic :foreground "steel blue"))))
280 `(bbdb-field-name ((,class (:weight bold :foreground "steel blue"))))
281 `(bbdb-field-value ((,class (:foreground "steel blue"))))
282 `(bbdb-name ((,class (:underline t :foreground "#FF6633"))))
283 `(bmkp-light-autonamed ((,class (:background "#C2DDFD"))))
284 `(bmkp-light-fringe-autonamed ((,class (:background "#90AFD5"))))
285 `(bmkp-light-fringe-non-autonamed ((,class (:background "#D5FFD5"))))
286 `(bmkp-light-non-autonamed ((,class (:background "#C4FFC4"))))
287 `(browse-kill-ring-separator-face ((,class (:weight bold :foreground "slate gray"))))
288 `(calendar-today ((,class (:weight bold :foreground "#4F4A3D" :background "#FFFFCC"))))
289 `(cfw:face-annotation ((,class (:foreground "green" :background "red"))))
290 `(cfw:face-day-title ((,class (:foreground "#C9C9C9"))))
291 `(cfw:face-default-content ((,class (:foreground "#2952A3"))))
292 `(cfw:face-default-day ((,class (:weight bold))))
293 `(cfw:face-disable ((,class (:foreground "DarkGray"))))
294 `(cfw:face-grid ((,class (:foreground "#DDDDDD"))))
295 `(cfw:face-header ((,class (:foreground "#1662AF" :background "white" :weight bold))))
296 `(cfw:face-holiday ((,class (:foreground "#777777" :background "#E4EBFE"))))
297 `(cfw:face-periods ((,class (:foreground "white" :background "#668CD9" :slant italic))))
298 `(cfw:face-saturday ((,class (:foreground "#4E4E4E" :background "white" :weight bold))))
299 `(cfw:face-select ((,class (:foreground "#4A95EB" :background "#EDF1FA"))))
300 `(cfw:face-sunday ((,class (:foreground "#4E4E4E" :background "white" :weight bold))))
301 `(cfw:face-title ((,class (:height 2.0 :foreground "#676767" :weight bold :inherit variable-pitch))))
302 `(cfw:face-today ((,class (:foreground "#4F4A3D" :background "#FFFFCC"))))
303 `(cfw:face-today-title ((,class (:foreground "#4A95EB" :background "#FFFFCC"))))
304 `(cfw:face-toolbar ((,class (:background "white"))))
305 `(cfw:face-toolbar-button-off ((,class (:foreground "#CFCFCF" :background "white"))))
306 `(cfw:face-toolbar-button-on ((,class (:foreground "#5E5E5E" :background "#F6F6F6"))))
307 `(change-log-date-face ((,class (:foreground "purple"))))
308 `(change-log-file ((,class (:weight bold :foreground "#4183C4"))))
309 `(circe-highlight-all-nicks-face ((,class (:foreground "blue" :background "#F0F0F0")))) ; other nick names
310 `(circe-highlight-nick-face ((,class (:foreground "#009300" :background "#F0F0F0")))) ; messages with my nick cited
311 `(circe-my-message-face ((,class (:foreground "#8B8B8B" :background "#F0F0F0"))))
312 `(circe-originator-face ((,class (:foreground "blue"))))
313 `(circe-prompt-face ((,class (:foreground "red"))))
314 `(circe-server-face ((,class (:foreground "#99CAE5"))))
315 `(comint-highlight-input ((,class (:weight bold :foreground "#0000FF" :inherit nil))))
316 ;; `(comint-highlight-prompt ((,class (:weight bold :foreground "black" :background "gold"))))
317 `(comint-highlight-prompt ((,class (:weight bold :foreground "#0000FF" :inherit nil))))
318 `(company-preview-common ((,class (:foreground "#C0C0C0" :background "#FFFFD7")))) ; same background as highlight-line
319 `(company-tooltip-annotation ((,class (:foreground "#999999" :background "cornsilk"))))
320 `(company-tooltip-common ((,class (:weight bold :inherit company-tooltip))))
321 `(company-tooltip-common-selection ((,class (:weight bold :inherit company-tooltip-selection))))
322 `(compare-windows ((,class (:background "#FFFF00"))))
323 `(compilation-error ((,class (:weight bold :foreground "red"))))
324 `(compilation-info ((,class (:weight bold :foreground "#2A489E")))) ; used for grep
325 `(compilation-line-number ((,class (:weight bold :foreground "#A535AE"))))
326 `(compilation-warning ((,class (:weight bold :foreground "orange"))))
327 `(css-property ((,class (:foreground "#00AA00"))))
328 `(css-selector ((,class (:weight bold :foreground "blue"))))
329 `(custom-button ((,class (:box (:line-width 2 :style released-button) :foreground "black" :background "lightgrey"))))
330 `(custom-button-mouse ((,class (:box (:line-width 2 :style released-button) :foreground "black" :background "grey90"))))
331 `(custom-button-pressed ((,class (:box (:line-width 2 :style pressed-button) :foreground "black" :background "light grey"))))
332 `(custom-button-pressed-unraised ((,class (:underline t :foreground "magenta4"))))
333 `(custom-button-unraised ((,class (:underline t))))
334 `(custom-changed ((,class (:foreground "white" :background "blue"))))
335 `(custom-comment ((,class (:background "gray85"))))
336 `(custom-comment-tag ((,class (:foreground "blue4"))))
337 `(custom-documentation ((,class (nil))))
338 `(custom-face-tag ((,class (:family "Sans Serif" :height 1.2 :weight bold))))
339 `(custom-group-tag ((,class (:height 1.2 :weight bold :foreground "blue1"))))
340 `(custom-group-tag-1 ((,class (:family "Sans Serif" :height 1.2 :weight bold :foreground "red1"))))
341 `(custom-invalid ((,class (:foreground "yellow" :background "red"))))
342 `(custom-link ((,class (:underline t :foreground "blue1"))))
343 `(custom-modified ((,class (:foreground "white" :background "blue"))))
344 `(custom-rogue ((,class (:foreground "pink" :background "black"))))
345 `(custom-saved ((,class (:underline t))))
346 `(custom-set ((,class (:foreground "blue" :background "white"))))
347 `(custom-state ((,class (:foreground "green4"))))
348 `(custom-themed ((,class (:foreground "white" :background "blue1"))))
349 `(custom-variable-button ((,class (:weight bold :underline t))))
350 `(custom-variable-tag ((,class (:family "Sans Serif" :height 1.2 :weight bold :foreground "blue1"))))
351 `(custom-visibility ((,class ,link)))
352 `(diff-hl-change ((,class (:foreground "blue3" :inherit diff-changed))))
353 `(diff-hl-delete ((,class (:foreground "red3" :inherit diff-removed))))
354 `(diff-hl-dired-change ((,class (:background "#FFA335" :foreground "black" :weight bold))))
355 `(diff-hl-dired-unknown ((,class (:foreground "white" :background "#3F3BB4"))))
356 `(diff-hl-insert ((,class (:foreground "green4" :inherit diff-added))))
357 `(diff-hl-unknown ((,class (:foreground "white" :background "#3F3BB4"))))
358 `(diary-face ((,class (:foreground "#87C9FC"))))
359 `(dircolors-face-asm ((,class (:foreground "black"))))
360 `(dircolors-face-backup ((,class (:foreground "black"))))
361 `(dircolors-face-compress ((,class (:foreground "red"))))
362 `(dircolors-face-dir ((,class ,directory)))
363 `(dircolors-face-doc ((,class (:foreground "black"))))
364 `(dircolors-face-dos ((,class (:foreground "ForestGreen"))))
365 `(dircolors-face-emacs ((,class (:foreground "black"))))
366 `(dircolors-face-exec ((,class (:foreground "ForestGreen"))))
367 `(dircolors-face-html ((,class (:foreground "black"))))
368 `(dircolors-face-img ((,class (:foreground "magenta3"))))
369 `(dircolors-face-lang ((,class (:foreground "black"))))
370 `(dircolors-face-lang-interface ((,class (:foreground "black"))))
371 `(dircolors-face-make ((,class (:foreground "black"))))
372 `(dircolors-face-objet ((,class (:foreground "black"))))
373 `(dircolors-face-package ((,class (:foreground "black"))))
374 `(dircolors-face-paddb ((,class (:foreground "black"))))
375 `(dircolors-face-ps ((,class (:foreground "black"))))
376 `(dircolors-face-sound ((,class (:foreground "DeepSkyBlue"))))
377 `(dircolors-face-tar ((,class (:foreground "red"))))
378 `(dircolors-face-text ((,class (:foreground "black"))))
379 `(dircolors-face-yacc ((,class (:foreground "black"))))
380 `(dired-directory ((,class ,directory)))
381 `(dired-header ((,class ,directory)))
382 `(dired-ignored ((,class (:strike-through t :foreground "red"))))
383 `(dired-mark ((,class ,marked-line)))
384 `(dired-marked ((,class ,marked-line)))
385 `(dired-symlink ((,class ,symlink)))
386 `(diredp-compressed-file-suffix ((,class (:foreground "red"))))
387 `(diredp-date-time ((,class (:foreground "purple"))))
388 `(diredp-dir-heading ((,class ,directory)))
389 `(diredp-dir-priv ((,class ,directory)))
390 `(diredp-exec-priv ((,class (:background "#03C03C"))))
391 `(diredp-executable-tag ((,class (:foreground "ForestGreen" :background "white"))))
392 `(diredp-file-name ((,class (:foreground "black"))))
393 `(diredp-file-suffix ((,class (:foreground "#C0C0C0"))))
394 `(diredp-flag-mark-line ((,class ,marked-line)))
395 `(diredp-ignored-file-name ((,class ,shadow)))
396 `(diredp-read-priv ((,class (:background "#0A99FF"))))
397 `(diredp-write-priv ((,class (:foreground "white" :background "#FF4040"))))
398 `(file-name-shadow ((,class ,shadow)))
399 `(font-latex-bold-face ((,class (:weight bold :foreground "black"))))
400 `(font-latex-italic-face ((,class (:slant italic :foreground "#1A1A1A"))))
401 `(font-latex-math-face ((,class (:foreground "blue"))))
402 `(font-latex-sectioning-1-face ((,class (:family "Sans Serif" :height 2.7 :weight bold :foreground "cornflower blue"))))
403 `(font-latex-sectioning-2-face ((,class ,ol1)))
404 `(font-latex-sectioning-3-face ((,class ,ol2)))
405 `(font-latex-sectioning-4-face ((,class ,ol3)))
406 `(font-latex-sectioning-5-face ((,class ,ol4)))
407 `(font-latex-sedate-face ((,class (:foreground "#FF5500"))))
408 `(font-latex-string-face ((,class (:weight bold :foreground "#0066FF"))))
409 `(font-latex-verbatim-face ((,class (:foreground "#000088" :background "#FFFFE0" :inherit nil))))
410 `(git-commit-summary-face ((,class (:foreground "#000000"))))
411 `(git-commit-comment-face ((,class (:slant italic :foreground "#696969"))))
412 `(helm-action ((,class (:foreground "black"))))
413 `(helm-bookmarks-su-face ((,class (:foreground "red"))))
414 `(helm-buffer-process ((,class (:foreground "#008200"))))
415 `(helm-candidate-number ((,class (:foreground "black" :background "#FFFF66"))))
416 `(helm-dir-heading ((,class (:foreground "blue" :background "pink"))))
417 `(helm-dir-priv ((,class (:foreground "dark red" :background "light grey"))))
418 `(helm-ff-directory ((,class ,directory)))
419 `(helm-ff-executable ((,class (:foreground "green3" :background "white"))))
420 `(helm-ff-file ((,class (:foreground "black"))))
421 `(helm-ff-invalid-symlink ((,class (:foreground "yellow" :background "red"))))
422 `(helm-ff-symlink ((,class ,symlink)))
423 `(helm-file-name ((,class (:foreground "blue"))))
424 `(helm-gentoo-match-face ((,class (:foreground "red"))))
425 `(helm-grep-match ((,class ,match)))
426 `(helm-grep-running ((,class (:weight bold :foreground "white"))))
427 `(helm-grep-lineno ((,class ,shadow)))
428 `(helm-isearch-match ((,class (:background "#CCFFCC"))))
429 `(helm-match ((,class ,match)))
430 `(helm-moccur-buffer ((,class (:foreground "#0066CC"))))
431 `(helm-selection ((,class ,volatile-highlight)))
432 `(helm-selection-line ((,class ,volatile-highlight)))
433 `(helm-source-header ((,class (:family "Sans Serif" :height 1.3 :weight bold :foreground "white" :background "#2F69BF"))))
434 `(helm-swoop-target-line-face ((,class ,volatile-highlight)))
435 `(helm-swoop-target-line-block-face ((,class (:background "#CCCC00" :foreground "#222222"))))
436 `(helm-swoop-target-word-face ((,class (:weight bold :foreground nil :background "#FDBD33"))))
437 `(helm-visible-mark ((,class ,marked-line)))
438 `(helm-w3m-bookmarks-face ((,class (:underline t :foreground "cyan1"))))
439 `(highlight-symbol-face ((,class (:background "#FFFFA0"))))
440 `(hl-line ((,class ,highlight-line)))
441 `(hl-tags-face ((,class (:background "#FEFCAE"))))
442 `(holiday-face ((,class (:foreground "#777777" :background "#E4EBFE"))))
443 `(html-helper-bold-face ((,class (:weight bold :foreground "black"))))
444 `(html-helper-italic-face ((,class (:slant italic :foreground "black"))))
445 `(html-helper-underline-face ((,class (:underline t :foreground "black"))))
446 `(html-tag-face ((,class (:foreground "blue"))))
447 `(ilog-non-change-face ((,class (:height 2.0 :foreground "#6434A3"))))
448 `(ilog-change-face ((,class (:height 2.0 :foreground "#008200"))))
449 `(ilog-echo-face ((,class (:height 2.0 :foreground "#006FE0"))))
450 `(ilog-load-face ((,class (:foreground "#BA36A5"))))
451 `(ilog-message-face ((,class (:foreground "#808080"))))
452 `(info-file ((,class (:family "Sans Serif" :height 1.8 :weight bold :box (:line-width 1 :color "#0000CC") :foreground "cornflower blue" :background "LightSteelBlue1"))))
453 `(info-header-node ((,class (:underline t :foreground "orange")))) ; nodes in header
454 `(info-header-xref ((,class (:underline t :foreground "dodger blue")))) ; cross references in header
455 `(info-menu-header ((,class ,ol2))) ; menu titles (headers) -- major topics
456 `(info-menu-star ((,class (:foreground "black")))) ; every 3rd menu item
457 `(info-node ((,class (:underline t :foreground "blue")))) ; node names
458 `(info-quoted-name ((,class ,code-inline)))
459 `(info-string ((,class ,string)))
460 `(info-title-1 ((,class ,ol1)))
461 `(info-xref ((,class (:underline t :foreground "#006DAF")))) ; unvisited cross-references
462 `(info-xref-visited ((,class (:underline t :foreground "magenta4")))) ; previously visited cross-references
463 `(light-symbol-face ((,class (:background "#FFFFA0"))))
464 `(linum ((,class (:inherit (default shadow) :foreground "#9A9A9A" :background "#EDEDED"))))
465 `(log-view-file ((,class (:foreground "#0000CC" :background "#EAF2F5"))))
466 `(lui-button-face ((,class ,link)))
467 `(lui-highlight-face ((,class (:box '(:line-width 1 :color "#CC0000") :foreground "#CC0000" :background "#FFFF88")))) ; my nickname
468 `(lui-time-stamp-face ((,class (:foreground "purple"))))
469 `(magit-branch ((,class ,vc-branch)))
470 `(magit-diff-add ((,class ,diff-added)))
471 `(magit-diff-del ((,class ,diff-removed)))
472 `(magit-diff-file-header ((,class (:family "Sans Serif" :height 1.1 :weight bold :foreground "#4183C4"))))
473 `(magit-diff-hunk-header ((,class ,diff-hunk-header)))
474 `(magit-diff-none ((,class ,diff-none)))
475 `(magit-header ((,class (:foreground "white" :background "#FF4040"))))
476 `(magit-item-highlight ((,class (:background "#EAF2F5"))))
477 `(magit-item-mark ((,class ,marked-line)))
478 `(magit-log-head-label ((,class (:box (:line-width 1 :color "blue" :style nil)))))
479 `(magit-log-tag-label ((,class (:box (:line-width 1 :color "#00CC00" :style nil)))))
480 `(magit-section-title ((,class (:family "Sans Serif" :height 1.8 :weight bold :foreground "cornflower blue" :inherit nil))))
481 `(makefile-space-face ((,class (:background "hot pink"))))
482 `(makefile-targets ((,class (:weight bold :foreground "blue"))))
483 `(match ((,class ,match)))
484 `(mm-uu-extract ((,class ,code-block)))
485 `(moccur-current-line-face ((,class (:foreground "black" :background "#FFFFCC"))))
486 `(moccur-face ((,class (:foreground "black" :background "#FFFF99"))))
487 `(next-error ((,class ,volatile-highlight)))
488 `(nobreak-space ((,class (:background "#CCE8F6"))))
489 `(nxml-attribute-local-name-face ((,class (:foreground "magenta"))))
490 `(nxml-attribute-value-delimiter-face ((,class (:foreground "green4"))))
491 `(nxml-attribute-value-face ((,class (:foreground "green4"))))
492 `(nxml-comment-content-face ((,class (:slant italic :foreground "red"))))
493 `(nxml-comment-delimiter-face ((,class (:foreground "red"))))
494 `(nxml-element-local-name ((,class (:box (:line-width 1 :color "#999999") :foreground "#000088" :background "#DEDEDE"))))
495 `(nxml-element-local-name-face ((,class (:foreground "blue"))))
496 `(nxml-processing-instruction-target-face ((,class (:foreground "purple1"))))
497 `(nxml-tag-delimiter-face ((,class (:foreground "blue"))))
498 `(nxml-tag-slash-face ((,class (:foreground "blue"))))
499 `(org-agenda-block-count ((,class (:weight bold :foreground "#A5A5A5"))))
500 `(org-agenda-calendar-event ((,class (:weight bold :foreground "#3774CC" :background "#A8C5EF"))))
501 `(org-agenda-calendar-sexp ((,class (:foreground "#777777" :background "#E4EBFE"))))
502 `(org-agenda-clocking ((,class (:foreground "black" :background "#EEC900"))))
503 `(org-agenda-column-dateline ((,class ,column)))
504 `(org-agenda-current-time ((,class (:underline t :foreground "#1662AF"))))
505 `(org-agenda-date ((,class (:height 1.6 :weight bold :foreground "#1662AF"))))
506 `(org-agenda-date-today ((,class (:height 1.6 :weight bold :foreground "#4F4A3D" :background "#FFFFCC"))))
507 `(org-agenda-date-weekend ((,class (:height 1.6 :weight bold :foreground "#4E4E4E"))))
508 `(org-agenda-diary ((,class (:weight bold :foreground "green4" :background "light blue"))))
509 `(org-agenda-dimmed-todo-face ((,class (:foreground "gold2"))))
510 `(org-agenda-done ((,class (:foreground "#555555"))))
511 `(org-agenda-filter-category ((,class (:weight bold :foreground "orange"))))
512 `(org-agenda-filter-tags ((,class (:weight bold :foreground "orange"))))
513 `(org-agenda-restriction-lock ((,class (:background "#E77D63"))))
514 `(org-agenda-structure ((,class (:height 1.6 :weight bold :foreground "#1F8DD6"))))
515 `(org-archived ((,class (:foreground "gray70"))))
516 `(org-beamer-tag ((,class (:box (:line-width 1 :color "#FABC18") :foreground "#2C2C2C" :background "#FFF8D0"))))
517 `(org-block ((,class ,code-block)))
518 `(org-block-background ((,class (:background "#FFFFE0"))))
519 `(org-block-begin-line ((,class (:underline "#A7A6AA" :foreground "#555555" :background "#E2E1D5"))))
520 `(org-block-end-line ((,class (:overline "#A7A6AA" :foreground "#555555" :background "#E2E1D5"))))
521 `(org-checkbox ((,class (:weight bold :box (:line-width 1 :style pressed-button) :foreground "white" :background "#777777"))))
522 `(org-clock-overlay ((,class (:foreground "white" :background "SkyBlue4"))))
523 `(org-code ((,class ,code-inline)))
524 `(org-column ((,class ,column)))
525 `(org-column-title ((,class ,column)))
526 `(org-date ((,class (:underline t :foreground "#00459E"))))
527 `(org-default ((,class (:foreground "#333333" :background "#FFFFFF"))))
528 `(org-dim ((,class (:foreground "#AAAAAA"))))
529 `(org-document-info ((,class (:foreground "#484848"))))
530 `(org-document-info-keyword ((,class (:foreground "#008ED1" :background "#EAEAFF"))))
531 `(org-document-title ((,class (:family "Sans Serif" :height 1.8 :weight bold :foreground "black"))))
532 `(org-done ((,class (:weight bold :box (:line-width 1 :color "#BBBBBB") :foreground "#BBBBBB" :background "#F0F0F0"))))
533 `(org-drawer ((,class (:foreground "light sky blue"))))
534 `(org-ellipsis ((,class (:underline nil :box (:line-width 1 :color "#999999") :foreground "#999999" :background "#FFF8C0")))) ; #FFEE62
535 `(org-example ((,class (:foreground "blue" :background "#EAFFEA"))))
536 `(org-footnote ((,class (:underline t :foreground "#008ED1"))))
537 `(org-formula ((,class (:foreground "chocolate1"))))
538 `(org-headline-done ((,class (:height 1.0 :weight normal :strike-through t :foreground "#ADADAD"))))
539 `(org-hide ((,class (:foreground "#E2E2E2"))))
540 `(org-inlinetask ((,class (:box (:line-width 1 :color "#EBEBEB") :foreground "#777777" :background "#FFFFD6"))))
541 `(org-latex-and-related ((,class (:foreground "#336699" :background "white"))))
542 `(org-level-1 ((,class ,ol1)))
543 `(org-level-2 ((,class ,ol2)))
544 `(org-level-3 ((,class ,ol3)))
545 `(org-level-4 ((,class ,ol4)))
546 `(org-level-5 ((,class ,ol5)))
547 `(org-level-6 ((,class ,ol6)))
548 `(org-level-7 ((,class ,ol7)))
549 `(org-level-8 ((,class ,ol8)))
550 `(org-link ((,class ,link)))
551 `(org-list-dt ((,class (:weight bold :foreground "#335EA8"))))
552 `(org-macro ((,class (:foreground "white" :background "#EDB802"))))
553 `(org-meta-line ((,class (:slant normal :foreground "#008ED1" :background "#EAEAFF"))))
554 `(org-mode-line-clock ((,class ,clock-line)))
555 `(org-mode-line-clock-overrun ((,class (:weight bold :box (:line-width 1 :color "#335EA8") :foreground "white" :background "#FF4040"))))
556 `(org-number-of-items ((,class (:weight bold :foreground "white" :background "#79BA79"))))
557 `(org-property-value ((,class (:foreground "#00A000"))))
558 `(org-quote ((,class (:slant italic :foreground "dim gray" :background "#FFFFE0"))))
559 `(org-scheduled ((,class (:foreground "#333333"))))
560 `(org-scheduled-previously ((,class (:foreground "#F22659"))))
561 `(org-scheduled-today ((,class (:weight bold :foreground "#4F4A3D" :background "#FFFFCC"))))
562 `(org-sexp-date ((,class (:foreground "#3774CC"))))
563 `(org-special-keyword ((,class (:weight bold :foreground "#00BB00" :background "#EAFFEA"))))
564 `(org-table ((,class (:foreground "dark green" :background "#EAFFEA"))))
565 `(org-tag ((,class (:weight normal :slant italic :foreground "#9A9FA4" :background "white"))))
566 `(org-target ((,class ,link)))
567 `(org-time-grid ((,class (:foreground "#CFCFCF"))))
568 `(org-todo ((,class (:weight bold :box (:line-width 1 :color "#D8ABA7") :foreground "#D8ABA7" :background "#FFE6E4"))))
569 `(org-upcoming-deadline ((,class (:foreground "#FF5555"))))
570 `(org-verbatim ((,class (:foreground "#0066CC"))))
571 `(org-verse ((,class (:slant italic :foreground "dim gray" :background "#EEEEEE"))))
572 `(org-warning ((,class (:weight bold :foreground "black" :background "#CCE7FF"))))
573 `(outline-1 ((,class ,ol1)))
574 `(outline-2 ((,class ,ol2)))
575 `(outline-3 ((,class ,ol3)))
576 `(outline-4 ((,class ,ol4)))
577 `(outline-5 ((,class ,ol5)))
578 `(outline-6 ((,class ,ol6)))
579 `(outline-7 ((,class ,ol7)))
580 `(outline-8 ((,class ,ol8)))
581 `(pabbrev-debug-display-label-face ((,class (:background "chartreuse"))))
582 `(pabbrev-suggestions-face ((,class (:weight bold :foreground "white" :background "red"))))
583 `(pabbrev-suggestions-label-face ((,class (:weight bold :foreground "white" :background "purple"))))
584 `(paren-face-match ((,class ,paren-matched)))
585 `(paren-face-mismatch ((,class ,paren-unmatched)))
586 `(paren-face-no-match ((,class ,paren-unmatched)))
587 `(persp-selected-face ((,class (:weight bold :foreground "#EEF5FE"))))
588 `(powerline-active1 ((,class (:background "grey22" :inherit mode-line))))
589 `(powerline-active2 ((,class (:background "#4070B6" :inherit mode-line))))
590 `(powerline-inactive1 ((,class (:background "#686868" :inherit mode-line-inactive))))
591 `(powerline-inactive2 ((,class (:background "#A9A9A9" :inherit mode-line-inactive))))
592 `(rainbow-delimiters-depth-1-face ((,class (:foreground "#707183"))))
593 `(rainbow-delimiters-depth-2-face ((,class (:foreground "#7388D6"))))
594 `(rainbow-delimiters-depth-3-face ((,class (:foreground "#909183"))))
595 `(rainbow-delimiters-depth-4-face ((,class (:foreground "#709870"))))
596 `(rainbow-delimiters-depth-5-face ((,class (:foreground "#907373"))))
597 `(rainbow-delimiters-depth-6-face ((,class (:foreground "#6276BA"))))
598 `(rainbow-delimiters-depth-7-face ((,class (:foreground "#858580"))))
599 `(rainbow-delimiters-depth-8-face ((,class (:foreground "#80A880"))))
600 `(rainbow-delimiters-depth-9-face ((,class (:foreground "#887070"))))
601 `(rainbow-delimiters-mismatched-face ((,class ,paren-unmatched)))
602 `(rainbow-delimiters-unmatched-face ((,class ,paren-unmatched)))
603 `(realgud-overlay-arrow1 ((,class (:foreground "#005522"))))
604 `(realgud-overlay-arrow2 ((,class (:foreground "#c18401"))))
605 `(realgud-overlay-arrow3 ((,class (:foreground "#909183"))))
606 `(realgud-bp-disabled-face ((,class (:foreground "#909183"))))
607 `(realgud-bp-line-enabled-face ((,class (:underline "red"))))
608 `(realgud-bp-line-disabled-face ((,class (:underline "#909183"))))
609 `(realgud-file-name ((,class :foreground "#005522")))
610 `(realgud-line-number ((,class :foreground "#A535AE")))
611 `(realgud-backtrace-number ((,class :foreground "#A535AE" :weight bold)))
612 `(recover-this-file ((,class (:weight bold :background "#FF3F3F"))))
613 `(rng-error ((,class (:weight bold :foreground "red" :background "#FBE3E4"))))
614 `(sh-heredoc ((,class (:foreground "blue" :background "#EEF5FE"))))
615 `(sh-quoted-exec ((,class (:foreground "#FF1493"))))
616 `(shadow ((,class ,shadow)))
617 `(shell-option-face ((,class (:foreground "forest green"))))
618 `(shell-output-2-face ((,class (:foreground "blue"))))
619 `(shell-output-3-face ((,class (:foreground "purple"))))
620 `(shell-output-face ((,class (:foreground "black"))))
621 ;; `(shell-prompt-face ((,class (:weight bold :foreground "yellow"))))
622 `(show-paren-match ((,class ,paren-matched)))
623 `(show-paren-mismatch ((,class ,paren-unmatched)))
624 `(sml-modeline-end-face ((,class (:background "#6BADF6")))) ; #335EA8
625 `(sml-modeline-vis-face ((,class (:background "#1979CA"))))
626 `(speedbar-button-face ((,class (:foreground "green4"))))
627 `(speedbar-directory-face ((,class (:foreground "blue4"))))
628 `(speedbar-file-face ((,class (:foreground "cyan4"))))
629 `(speedbar-highlight-face ((,class ,volatile-highlight)))
630 `(speedbar-selected-face ((,class (:underline t :foreground "red"))))
631 `(speedbar-tag-face ((,class (:foreground "brown"))))
632 `(svn-status-directory-face ((,class ,directory)))
633 `(svn-status-filename-face ((,class (:weight bold :foreground "#4183C4"))))
634 `(svn-status-locked-face ((,class (:weight bold :foreground "red"))))
635 `(svn-status-marked-face ((,class ,marked-line)))
636 `(svn-status-marked-popup-face ((,class (:weight bold :foreground "green3"))))
637 `(svn-status-switched-face ((,class (:slant italic :foreground "gray55"))))
638 `(svn-status-symlink-face ((,class ,symlink)))
639 `(svn-status-update-available-face ((,class (:foreground "orange"))))
640 `(tex-verbatim ((,class (:foreground "blue"))))
641 `(tool-bar ((,class (:box (:line-width 1 :style released-button) :foreground "black" :background "gray75"))))
642 `(tooltip ((,class (:foreground "black" :background "light yellow"))))
643 `(trailing-whitespace ((,class (:background "#F6EBFE"))))
644 `(traverse-match-face ((,class (:weight bold :foreground "blue violet"))))
645 `(vc-annotate-face-3F3FFF ((,class (:foreground "#3F3FFF" :background "black"))))
646 `(vc-annotate-face-3F6CFF ((,class (:foreground "#3F3FFF" :background "black"))))
647 `(vc-annotate-face-3F99FF ((,class (:foreground "#3F99FF" :background "black"))))
648 `(vc-annotate-face-3FC6FF ((,class (:foreground "#3F99FF" :background "black"))))
649 `(vc-annotate-face-3FF3FF ((,class (:foreground "#3FF3FF" :background "black"))))
650 `(vc-annotate-face-3FFF56 ((,class (:foreground "#4BFF4B" :background "black"))))
651 `(vc-annotate-face-3FFF83 ((,class (:foreground "#3FFFB0" :background "black"))))
652 `(vc-annotate-face-3FFFB0 ((,class (:foreground "#3FFFB0" :background "black"))))
653 `(vc-annotate-face-3FFFDD ((,class (:foreground "#3FF3FF" :background "black"))))
654 `(vc-annotate-face-56FF3F ((,class (:foreground "#4BFF4B" :background "black"))))
655 `(vc-annotate-face-83FF3F ((,class (:foreground "#B0FF3F" :background "black"))))
656 `(vc-annotate-face-B0FF3F ((,class (:foreground "#B0FF3F" :background "black"))))
657 `(vc-annotate-face-DDFF3F ((,class (:foreground "#FFF33F" :background "black"))))
658 `(vc-annotate-face-FF3F3F ((,class (:foreground "#FF3F3F" :background "black"))))
659 `(vc-annotate-face-FF6C3F ((,class (:foreground "#FF3F3F" :background "black"))))
660 `(vc-annotate-face-FF993F ((,class (:foreground "#FF993F" :background "black"))))
661 `(vc-annotate-face-FFC63F ((,class (:foreground "#FF993F" :background "black"))))
662 `(vc-annotate-face-FFF33F ((,class (:foreground "#FFF33F" :background "black"))))
663 `(w3m-anchor ((,class ,link)))
664 `(w3m-arrived-anchor ((,class (:foreground "purple1"))))
665 `(w3m-bitmap-image-face ((,class (:foreground "gray4" :background "green"))))
666 `(w3m-bold ((,class (:weight bold :foreground "black"))))
667 `(w3m-current-anchor ((,class (:weight bold :underline t :foreground "blue"))))
668 `(w3m-form ((,class (:underline t :foreground "tan1"))))
669 `(w3m-form-button-face ((,class (:weight bold :underline t :foreground "gray4" :background "light grey"))))
670 `(w3m-form-button-mouse-face ((,class (:underline t :foreground "light grey" :background "#2B7E2A"))))
671 `(w3m-form-button-pressed-face ((,class (:weight bold :underline t :foreground "gray4" :background "light grey"))))
672 `(w3m-header-line-location-content-face ((,class (:foreground "#7F7F7F":background "#F7F7F7"))))
673 `(w3m-header-line-location-title-face ((,class (:foreground "#2C55B1" :background "#F7F7F7"))))
674 `(w3m-history-current-url-face ((,class (:foreground "lemon chiffon"))))
675 `(w3m-image-face ((,class (:weight bold :foreground "DarkSeaGreen2"))))
676 `(w3m-link-numbering ((,class (:foreground "#B4C7EB")))) ; mouseless browsing
677 `(w3m-strike-through-face ((,class (:strike-through t))))
678 `(w3m-underline-face ((,class (:underline t))))
679 `(which-func ((,class (:weight bold :foreground "white"))))
680 `(widget-button ((,class ,link)))
681 `(widget-button-pressed ((,class (:foreground "red"))))
682 `(widget-documentation ((,class (:foreground "green4"))))
683 `(widget-field ((,class (:background "gray85"))))
684 `(widget-inactive ((,class (:foreground "dim gray"))))
685 `(widget-single-line-field ((,class (:background "gray85"))))
686 `(yas/field-debug-face ((,class (:background "ivory2"))))
687 `(yas/field-highlight-face ((,class (:background "DarkSeaGreen1"))))
690 (custom-theme-set-variables 'leuven
691 '(ansi-color-faces-vector
692 [default default default italic underline success warning error])
693 '(ansi-color-names-vector
694 ["black" "red3" "ForestGreen" "yellow3" "blue" "magenta3" "DeepSkyBlue" "gray50"])
695 ; colors used in Shell mode
698 ;;;###autoload
699 (when (and (boundp 'custom-theme-load-path)
700 load-file-name)
701 ;; add theme folder to `custom-theme-load-path' when installing over MELPA
702 (add-to-list 'custom-theme-load-path
703 (file-name-as-directory (file-name-directory load-file-name))))
705 (provide-theme 'leuven)
707 ;; Local Variables:
708 ;; time-stamp-format: "%:y%02m%02d.%02H%02M"
709 ;; time-stamp-start: "Version: "
710 ;; time-stamp-end: "$"
711 ;; no-byte-compile: t
712 ;; End:
714 ;;; leuven-theme.el ends here