-
Notifications
You must be signed in to change notification settings - Fork 2
/
init-appearance.el
415 lines (381 loc) · 23 KB
/
init-appearance.el
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
;;; init-appearance.el --- User interface configuration
;; get rid of the default messages on startup
(setq initial-scratch-message nil)
(setq inhibit-startup-message t)
(setq inhibit-startup-echo-area-message t)
;; Set the initial frame size
(setq default-frame-alist
(append default-frame-alist '((width . 100) (height . 60))))
;; Enable the mouse wheel
(mouse-wheel-mode t)
;; Highlight the active region
(setq transient-mark-mode t)
;; Readable unique buffer names
(require 'uniquify)
(setq uniquify-buffer-name-style 'forward)
;; turn off the visible cursor in non-selected windows
(setq-default cursor-in-non-selected-windows nil)
;; can be set to '(bar . 2) or 't
(setq-default cursor-type '(bar . 2))
;; turn the blinking off
(blink-cursor-mode -1)
;; turn off the tool-bar
(tool-bar-mode -1)
;; Highlight matching parentheses when the point is on them.
(show-paren-mode 1)
;; Display a glyph in the fringe on empty lines
(setq-default indicate-empty-lines t)
;; Don't wrap long lines
(setq-default truncate-lines t)
;; Don't show time in the modeline
(display-time-mode -1)
;; ido-mode is like magic pixie dust!
(ido-mode t)
(setq ido-enable-prefix nil
ido-enable-flex-matching t
ido-create-new-buffer 'always
ido-use-filename-at-point t
ido-max-prospects 10)
;; imenu
;; ‘font-lock-mode-hook’ is run immediately after entering every major mode.
;; Make use of this to add an Imenu index to the menu bar in any mode that supports it:
(defun try-to-add-imenu ()
(condition-case nil (imenu-add-menubar-index) (error nil)))
(add-hook 'font-lock-mode-hook 'try-to-add-imenu)
;; Force imenu to rescan buffers
(set-default 'imenu-auto-rescan t)
;; Show line numbers in buffer
(require 'linum)
(global-linum-mode t)
;; Font
;(set-face-font 'default "-apple-anonymous-medium-r-normal--14-*-*-*-*-*-iso10646-1")
(set-face-attribute 'default nil :family "anonymous" :height 140)
;; Font lock
(global-font-lock-mode t)
(setq font-lock-maximum-decoration t)
;; Set the color of the highlighted line
(require 'hl-line)
(set-face-background 'hl-line "#3c3c3c")
;; Color Themes
(require 'color-theme)
(color-theme-initialize)
(setq color-theme-is-global t)
;;; theme-start
(defun reload-anonymous-theme ()
"Reload init.el and the color-theme-anonymous"
(interactive)
(save-buffer)
(eval-buffer)
(color-theme-anonymous))
;; theme-colors
;; yellow: #ffffcc
;; blue: #6688ee
;; green: #52c62b
;; lightest grey: #f1f1f1
;; greys: #aa, #bb, #cc
;; light blue: #c2cff1
(defun color-theme-anonymous ()
"Attempt at a modern theme. Based on the Helvetica theme."
(interactive)
(color-theme-install
'(color-theme-anonymous
((background-color . "#444444")
(background-mode . dark)
(border-color . "black")
(cursor-color . "White")
(foreground-color . "#d3d3d3")
(mouse-color . "Grey"))
((apropos-keybinding-face . underline)
(apropos-label-face face italic mouse-face highlight)
(apropos-match-face . secondary-selection)
(apropos-property-face . bold-italic)
(apropos-symbol-face . info-xref)
(display-time-mail-face . mode-line)
(gnus-article-button-face . bold)
(gnus-article-mouse-face . highlight)
(gnus-carpal-button-face . bold)
(gnus-carpal-header-face . bold-italic)
(gnus-cite-attribution-face . gnus-cite-attribution-face)
(gnus-mouse-face . highlight)
(gnus-selected-tree-face . modeline)
(gnus-signature-face . gnus-signature-face)
(gnus-summary-selected-face . gnus-summary-selected-face)
(gnus-treat-display-xface . head)
(help-highlight-face . underline)
(list-matching-lines-face . bold)
(view-highlight-face . highlight)
(widget-mouse-face . highlight))
(default ((t (:stipple nil :foreground "#aaaaaa" :inverse-video nil :box nil :strike-through nil :overline nil :underline nil :slant normal :weight normal :width normal :family "Anonymous"))))
(bbdb-field-name ((t (:foreground "green"))))
(bg:erc-color-face0 ((t (:background "White"))))
(bg:erc-color-face1 ((t (:background "black"))))
(bg:erc-color-face10 ((t (:background "lightblue1"))))
(bg:erc-color-face11 ((t (:background "cyan"))))
(bg:erc-color-face12 ((t (:background "blue"))))
(bg:erc-color-face13 ((t (:background "deeppink"))))
(bg:erc-color-face14 ((t (:background "gray50"))))
(bg:erc-color-face15 ((t (:background "gray90"))))
(bg:erc-color-face2 ((t (:background "blue4"))))
(bg:erc-color-face3 ((t (:background "green4"))))
(bg:erc-color-face4 ((t (:background "red"))))
(bg:erc-color-face5 ((t (:background "brown"))))
(bg:erc-color-face6 ((t (:background "purple"))))
(bg:erc-color-face7 ((t (:background "orange"))))
(bg:erc-color-face8 ((t (:background "yellow"))))
(bg:erc-color-face9 ((t (:background "green"))))
(blue ((t (:foreground "#6688ee"))))
(bold ((t (:bold t :foreground "#bbbbbb" :weight bold :family "Optima"))))
(bold-italic ((t (:italic t :bold t :slant italic :weight bold :family "Optima"))))
(border ((t (:background "black"))))
(calendar-today-face ((t (:underline t))))
(comint-highlight-input ((t (:bold t :weight bold))))
(comint-highlight-prompt ((t (:foreground "#c2cff1"))))
(cperl-array-face ((t (:foreground "Yellow"))))
(cperl-hash-face ((t (:foreground "White"))))
(cperl-nonoverridable-face ((t (:foreground "SkyBlue"))))
(cursor ((t (:background "purple"))))
(custom-button-face ((t (:foreground "MediumSlateBlue" :underline t))))
(custom-button-pressed-face ((t (:background "lightgrey" :foreground "black" :box (:line-width 2 :style pressed-button)))))
(custom-changed-face ((t (:background "blue" :foreground "white"))))
(custom-comment-face ((t (:background "dim gray"))))
(custom-comment-tag-face ((t (:foreground "gray80"))))
(custom-documentation-face ((t (:foreground "Grey"))))
(custom-face-tag-face ((t (:bold t :family "Optima" :weight bold :height 1.2))))
(custom-group-tag-face ((t (:foreground "MediumAquamarine"))))
(custom-group-tag-face-1 ((t (:bold t :family "Optima" :foreground "pink" :weight bold :height 1.2))))
(custom-invalid-face ((t (:background "red" :foreground "yellow"))))
(custom-modified-face ((t (:background "blue" :foreground "white"))))
(custom-rogue-face ((t (:background "black" :foreground "pink"))))
(custom-saved-face ((t (:underline t))))
(custom-set-face ((t (:background "white" :foreground "blue"))))
(custom-state-face ((t (:foreground "Coral"))))
(custom-variable-button-face ((t (:underline t))))
(custom-variable-tag-face ((t (:foreground "Aquamarine"))))
(date ((t (:foreground "green"))))
(diary-face ((t (:bold t :foreground "IndianRed" :weight bold))))
(dired-face-directory ((t (:bold t :foreground "sky blue" :weight bold))))
(dired-face-executable ((t (:foreground "#d90000"))))
(dired-face-flagged ((t (:foreground "tomato"))))
(dired-face-marked ((t (:foreground "light salmon"))))
(dired-face-permissions ((t (:foreground "aquamarine"))))
(erc-action-face ((t (:bold t :weight bold))))
(erc-bold-face ((t (:bold t :weight bold))))
(erc-default-face ((t (nil))))
(erc-direct-msg-face ((t (:foreground "pale green"))))
(erc-error-face ((t (:bold t :foreground "IndianRed" :weight bold))))
(erc-highlight-face ((t (:bold t :foreground "pale green" :weight bold))))
(erc-host-danger-face ((t (:foreground "red"))))
(erc-input-face ((t (:foreground "light blue"))))
(erc-inverse-face ((t (:background "steel blue"))))
(erc-notice-face ((t (:foreground "light salmon"))))
(erc-pal-face ((t (:foreground "pale green"))))
(erc-prompt-face ((t (:bold t :foreground "light blue" :weight bold))))
(erc-underline-face ((t (:underline t))))
(eshell-ls-archive-face ((t (:bold t :foreground "IndianRed" :weight bold))))
(eshell-ls-backup-face ((t (:foreground "Grey"))))
(eshell-ls-clutter-face ((t (:bold t :foreground "DimGray" :weight bold))))
(eshell-ls-directory-face ((t (:bold t :foreground "MediumSlateBlue" :weight bold))))
(eshell-ls-executable-face ((t (:bold t :foreground "Coral" :weight bold))))
(eshell-ls-missing-face ((t (:bold t :foreground "black" :weight bold))))
(eshell-ls-picture-face ((t (:foreground "Violet"))))
(eshell-ls-product-face ((t (:foreground "LightSalmon"))))
(eshell-ls-readonly-face ((t (:foreground "Aquamarine"))))
(eshell-ls-special-face ((t (:bold t :foreground "Gold" :weight bold))))
(eshell-ls-symlink-face ((t (:bold t :foreground "White" :weight bold))))
(eshell-ls-text-face ((t (:foreground "medium aquamarine"))))
(eshell-ls-todo-face ((t (:bold t :foreground "aquamarine" :weight bold))))
(eshell-ls-unreadable-face ((t (:foreground "DimGray"))))
(eshell-prompt-face ((t (:foreground "powder blue"))))
(face-1 ((t (:stipple nil :foreground "royal blue" :family "andale mono"))))
(face-2 ((t (:stipple nil :foreground "DeepSkyBlue1" :overline nil :underline nil :slant normal :family "Anonymous"))))
(face-3 ((t (:stipple nil :foreground "NavajoWhite3"))))
(fg:erc-color-face0 ((t (:foreground "white"))))
(fg:erc-color-face1 ((t (:foreground "beige"))))
(fg:erc-color-face10 ((t (:foreground "pale goldenrod"))))
(fg:erc-color-face11 ((t (:foreground "light goldenrod yellow"))))
(fg:erc-color-face12 ((t (:foreground "light yellow"))))
(fg:erc-color-face13 ((t (:foreground "yellow"))))
(fg:erc-color-face14 ((t (:foreground "light goldenrod"))))
(fg:erc-color-face15 ((t (:foreground "lime green"))))
(fg:erc-color-face2 ((t (:foreground "lemon chiffon"))))
(fg:erc-color-face3 ((t (:foreground "light cyan"))))
(fg:erc-color-face4 ((t (:foreground "powder blue"))))
(fg:erc-color-face5 ((t (:foreground "sky blue"))))
(fg:erc-color-face6 ((t (:foreground "dark sea green"))))
(fg:erc-color-face7 ((t (:foreground "pale green"))))
(fg:erc-color-face8 ((t (:foreground "medium spring green"))))
(fg:erc-color-face9 ((t (:foreground "khaki"))))
(fixed-pitch ((t (:family "Anonymous"))))
(font-lock-builtin-face ((t (:bold t :foreground "#c2cff1" :weight bold))))
(font-lock-comment-face ((t (:foreground "#707070"))))
(font-lock-constant-face ((t (:bold t :foreground "#52c62b" :weight bold))))
(font-lock-doc-face ((t (:italic t :slant italic :foreground "#6688ee"))))
(font-lock-doc-string-face ((t (:foreground "#6688ee"))))
(font-lock-function-name-face ((t (:bold t :foreground "#ffffbb" :weight bold))))
;(font-lock-keyword-face ((t (:foreground "#888"))))
(font-lock-keyword-face ((t (:foreground "#c2cff1"))))
(font-lock-preprocessor-face ((t (:foreground "#6688ee"))))
(font-lock-reference-face ((t (:foreground "#c2cff1"))))
(font-lock-string-face ((t (:italic t :foreground "#ffffcc" :slant italic))))
(font-lock-type-face ((t (:bold t :foreground "#c2cff1" :weight bold))))
(font-lock-variable-name-face ((t (:italic t :bold t :foreground "#f3f3f3" :slant italic :weight bold))))
(font-lock-warning-face ((t (:bold t :foreground "IndianRed" :weight bold))))
(fringe ((t (:background "#333333"))))
(gnus-cite-attribution-face ((t (:family "Optima"))))
(gnus-cite-face-1 ((t (:foreground "DarkGoldenrod3"))))
(gnus-cite-face-10 ((t (nil))))
(gnus-cite-face-11 ((t (nil))))
(gnus-cite-face-2 ((t (:foreground "IndianRed3"))))
(gnus-cite-face-3 ((t (:foreground "tomato"))))
(gnus-cite-face-4 ((t (:foreground "yellow green"))))
(gnus-cite-face-5 ((t (:foreground "SteelBlue3"))))
(gnus-cite-face-6 ((t (:foreground "Azure3"))))
(gnus-cite-face-7 ((t (:foreground "Azure4"))))
(gnus-cite-face-8 ((t (:foreground "SpringGreen4"))))
(gnus-cite-face-9 ((t (:foreground "SlateGray4"))))
(gnus-emphasis-bold ((t (:bold t :foreground "greenyellow" :weight bold :family "Optima"))))
(gnus-emphasis-bold-italic ((t (:italic t :bold t :foreground "OrangeRed1" :slant italic :weight bold :family "Optima"))))
(gnus-emphasis-highlight-words ((t (:background "black" :foreground "khaki"))))
(gnus-emphasis-italic ((t (:italic t :bold t :foreground "orange" :slant italic :weight bold :family "Optima"))))
(gnus-emphasis-underline ((t (:foreground "greenyellow" :underline t))))
(gnus-emphasis-underline-bold ((t (:bold t :foreground "khaki" :underline t :weight bold :family "Optima"))))
(gnus-emphasis-underline-bold-italic ((t (:italic t :bold t :underline t :slant italic :weight bold :family "Optima"))))
(gnus-emphasis-underline-italic ((t (:italic t :foreground "orange" :underline t :slant italic :family "Optima"))))
(gnus-group-mail-1-empty-face ((t (:foreground "Salmon4"))))
(gnus-group-mail-1-face ((t (:bold t :foreground "firebrick1" :weight bold))))
(gnus-group-mail-2-empty-face ((t (:foreground "turquoise4"))))
(gnus-group-mail-2-face ((t (:bold t :foreground "turquoise" :weight bold))))
(gnus-group-mail-3-empty-face ((t (:foreground "LightCyan4"))))
(gnus-group-mail-3-face ((t (:bold t :foreground "LightCyan1" :weight bold))))
(gnus-group-mail-low-empty-face ((t (:foreground "SteelBlue4"))))
(gnus-group-mail-low-face ((t (:bold t :foreground "SteelBlue2" :weight bold))))
(gnus-group-news-1-empty-face ((t (:foreground "Salmon4"))))
(gnus-group-news-1-face ((t (:bold t :foreground "FireBrick1" :weight bold))))
(gnus-group-news-2-empty-face ((t (:foreground "darkorange3"))))
(gnus-group-news-2-face ((t (:bold t :foreground "dark orange" :weight bold))))
(gnus-group-news-3-empty-face ((t (:foreground "turquoise4"))))
(gnus-group-news-3-face ((t (:bold t :foreground "Aquamarine" :weight bold))))
(gnus-group-news-4-empty-face ((t (:foreground "SpringGreen4"))))
(gnus-group-news-4-face ((t (:bold t :foreground "SpringGreen2" :weight bold))))
(gnus-group-news-5-empty-face ((t (:foreground "OliveDrab4"))))
(gnus-group-news-5-face ((t (:bold t :foreground "OliveDrab2" :weight bold))))
(gnus-group-news-6-empty-face ((t (:foreground "DarkGoldenrod4"))))
(gnus-group-news-6-face ((t (:bold t :foreground "DarkGoldenrod3" :weight bold))))
(gnus-group-news-low-empty-face ((t (:foreground "wheat4"))))
(gnus-group-news-low-face ((t (:bold t :foreground "tan4" :weight bold))))
(gnus-header-content-face ((t (:foreground "LightSkyBlue3"))))
(gnus-header-from-face ((t (:bold t :foreground "light cyan" :weight bold))))
(gnus-header-name-face ((t (:bold t :foreground "DodgerBlue1" :weight bold))))
(gnus-header-newsgroups-face ((t (:italic t :bold t :foreground "LightSkyBlue3" :slant italic :weight bold))))
(gnus-header-subject-face ((t (:bold t :foreground "light cyan" :weight bold))))
(gnus-signature-face ((t (:italic t :foreground "salmon" :slant italic))))
(gnus-splash-face ((t (:foreground "Firebrick1"))))
(gnus-summary-cancelled-face ((t (:background "black" :foreground "yellow"))))
(gnus-summary-high-ancient-face ((t (:bold t :foreground "MistyRose4" :weight bold))))
(gnus-summary-high-read-face ((t (:bold t :foreground "tomato3" :weight bold))))
(gnus-summary-high-ticked-face ((t (:bold t :foreground "coral" :weight bold))))
(gnus-summary-high-unread-face ((t (:italic t :bold t :foreground "red1" :slant italic :weight bold))))
(gnus-summary-low-ancient-face ((t (:italic t :foreground "DarkSeaGreen4" :slant italic))))
(gnus-summary-low-read-face ((t (:foreground "SeaGreen4"))))
(gnus-summary-low-ticked-face ((t (:italic t :foreground "Green4" :slant italic))))
(gnus-summary-low-unread-face ((t (:italic t :foreground "green3" :slant italic))))
(gnus-summary-normal-ancient-face ((t (:foreground "RoyalBlue"))))
(gnus-summary-normal-read-face ((t (:foreground "khaki4"))))
(gnus-summary-normal-ticked-face ((t (:foreground "khaki3"))))
(gnus-summary-normal-unread-face ((t (:foreground "khaki"))))
(gnus-summary-selected-face ((t (:foreground "gold" :underline t))))
(green ((t (:foreground "#52c62b"))))
(gui-button-face ((t (:foreground "red" :background "black"))))
(gui-element ((t (:bold t :background "#ffffff" :foreground "#000000" :weight bold))))
(header-line ((t (:box (:line-width -1 :style released-button) :background "grey20" :foreground "grey90" :box nil))))
(highlight ((t (:background "#3c3c3c"))))
(highline-face ((t (:background "SeaGreen"))))
(holiday-face ((t (:background "DimGray"))))
(info-menu-5 ((t (:underline t))))
(info-node ((t (:bold t :foreground "DodgerBlue1" :underline t :weight bold))))
(info-xref ((t (:bold t :foreground "DodgerBlue3" :weight bold))))
(isearch ((t (:background "#d2d2d2" :foreground "black"))))
(isearch-lazy-highlight-face ((t (:background "#303030"))))
(italic ((t (:italic t :foreground "chocolate3" :slant italic))))
(menu ((t (nil))))
(message-cited-text-face ((t (:foreground "White"))))
(message-header-cc-face ((t (:foreground "light cyan"))))
(message-header-name-face ((t (:foreground "DodgerBlue1"))))
(message-header-newsgroups-face ((t (:italic t :bold t :foreground "LightSkyBlue3" :slant italic :weight bold))))
(message-header-other-face ((t (:foreground "LightSkyBlue3"))))
(message-header-subject-face ((t (:bold t :foreground "light cyan" :weight bold))))
(message-header-to-face ((t (:bold t :foreground "light cyan" :weight bold))))
(message-header-xheader-face ((t (:foreground "DodgerBlue3"))))
(message-mml-face ((t (:foreground "ForestGreen"))))
(message-separator-face ((t (:background "cornflower blue" :foreground "chocolate"))))
(modeline ((t (:background "#2c2c2c" :foreground "#777777"))))
(modeline-buffer-id ((t (:foreground "#cccccc" :family "Optima" :height 180))))
(modeline-inactive ((t (:background "#4c4c4c" :foreground "#777777"))))
(modeline-mousable ((t (:bold t :background "dark olive green" :foreground "yellow green" :weight bold :family "Optima"))))
(modeline-mousable-minor-mode ((t (:bold t :background "dark olive green" :foreground "wheat" :weight bold :family "Optima"))))
(mouse ((t (:background "Grey"))))
(paren-blink-off ((t (:foreground "brown"))))
(region ((t (:background "#222222"))))
(ruler-mode-column-number-face ((t (:box (:color "grey76" :line-width 1 :style released-button) :background "grey76" :stipple nil :inverse-video nil :strike-through nil :overline nil :underline nil :slant normal :weight normal :width normal :family "Inconsolata" :foreground "black"))))
(ruler-mode-current-column-face ((t (:bold t :box (:color "grey76" :line-width 1 :style released-button) :background "grey76" :stipple nil :inverse-video nil :strike-through nil :overline nil :underline nil :slant normal :width normal :family "Anonymous" :foreground "yellow" :weight bold))))
(ruler-mode-default-face ((t (:family "Anonymous" :width normal :weight normal :slant normal :underline nil :overline nil :strike-through nil :inverse-video nil :stipple nil :background "grey76" :foreground "grey64" :box (:color "grey76" :line-width 1 :style released-button)))))
(ruler-mode-fill-column-face ((t (:box (:color "grey76" :line-width 1 :style released-button) :background "grey76" :stipple nil :inverse-video nil :strike-through nil :overline nil :underline nil :slant normal :weight normal :width normal :family "Anonymous" :foreground "red"))))
(ruler-mode-margins-face ((t (:box (:color "grey76" :line-width 1 :style released-button) :foreground "grey64" :stipple nil :inverse-video nil :strike-through nil :overline nil :underline nil :slant normal :weight normal :width normal :family "Anonymous" :background "grey64"))))
(ruler-mode-tab-stop-face ((t (:box (:color "grey76" :line-width 1 :style released-button) :background "grey76" :stipple nil :inverse-video nil :strike-through nil :overline nil :underline nil :slant normal :weight normal :width normal :family "Anonymous" :foreground "steelblue"))))
(scroll-bar ((t (nil))))
(secondary-selection ((t (:background "Aquamarine" :foreground "SlateBlue"))))
(show-paren-match-face ((t (:bold t :background "#333333" :foreground "White" :weight bold))))
(show-paren-mismatch-face ((t (:foreground "Red"))))
(swbuff-current-buffer-face ((t (:bold t :foreground "red" :weight bold))))
(text-cursor ((t (:background "Red" :foreground "white"))))
(tool-bar ((t (:background "grey75" :foreground "black" :box (:line-width 1 :style released-button)))))
(trailing-whitespace ((t (:background "red"))))
(underline ((t (:underline t))))
(variable-pitch ((t (:family "Optima"))))
(textile-link-face (()t (:foreground "#222222")))
(w3m-anchor-face ((t (:bold t :foreground "DodgerBlue1" :weight bold))))
(w3m-arrived-anchor-face ((t (:bold t :foreground "DodgerBlue3" :weight bold))))
(w3m-header-line-location-content-face ((t (:background "dark olive green" :foreground "wheat"))))
(w3m-header-line-location-title-face ((t (:background "dark olive green" :foreground "beige"))))
(widget-button-face ((t (:bold t :foreground "green" :weight bold :family "Anonymous"))))
(widget-button-pressed-face ((t (:foreground "red"))))
(widget-documentation-face ((t (:foreground "lime green"))))
(widget-field-face ((t (:foreground "LightBlue"))))
(widget-inactive-face ((t (:foreground "DimGray"))))
(widget-single-line-field-face ((t (:foreground "LightBlue"))))
(woman-bold-face ((t (:bold t :weight bold :family "Optima"))))
(woman-italic-face ((t (:italic t :foreground "beige" :slant italic :family "Optima"))))
(woman-unknown-face ((t (:foreground "LightSalmon"))))
(zmacs-region ((t (:background "dark cyan" :foreground "cyan")))))))
;;; theme-end
(defun color-theme-eiffel ()
"Based on the TextMate Eiffel theme"
(interactive)
(color-theme-install
'(color-theme-eiffel
((background-color . "white")
(foreground-color . "black")
(background-mode . light)
(mouse-color . "grey15")
(cursor-color . "grey15"))
(default ((t nil)))
(font-lock-comment-face ((t (:foreground "#666666"))))
(font-lock-string-face ((t (:foreground "#008000"))))
(font-lock-keyword-face ((t (:foreground "#0100b6"))))
(font-lock-warning-face ((t (:bold t :foreground "VioletRed"))))
(font-lock-constant-face ((t (:foreground "#c5060b"))))
(font-lock-type-face ((t (:foreground "NavyBlue"))))
(font-lock-variable-name-face ((t (:foreground "#0206ff"))))
(font-lock-function-name-face ((t (:foreground "#400080"))))
(font-lock-builtin-face ((t (:foreground "#585cf6"))))
(highline-face ((t (:background "Grey95"))))
(show-paren-match-face ((t (:background "Grey80"))))
(region ((t (:background "Grey80"))))
(highlight ((t (:foreground "ForestGreen"))))
(secondary-selection ((t (:background "NavyBlue" :foreground "white"))))
(widget-field-face ((t (:background "NavyBlue"))))
(widget-single-line-field-face ((t (:background "RoyalBlue")))))) )
;; Activate theme
(color-theme-anonymous)
(provide 'init-appearance)
;;; init-appearance.el ends here