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