-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcolor-theme-vibrant-ink.el
58 lines (57 loc) · 2.66 KB
/
color-theme-vibrant-ink.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
;; color-theme-vibrant-ink
;;
;; This is an emacs color-theme library. A port of the TextMate theme VibrantInk
;; Most of it was found on the emacs-rails google group
;;
;; Vibrant Ink Textmate: http://alternateidea.com/blog/articles/2006/1/3/textmate-vibrant-ink-theme-and-prototype-bundle
;; Vivid Chalk in emacs-rails Google Groups: http://groups.google.com/group/emacs-on-rails/browse_thread/thread/f99e3707e59eff6d
(defun color-theme-vibrant-ink ()
"Emacs Vibrant Ink"
(interactive)
(color-theme-install
'(color-theme-vibrant-ink
((background-color . "#111111")
(background-mode . dark)
(border-color . "black")
(cursor-color . "white")
(foreground-color . "white")
(list-matching-lines-face . bold)
(view-highlight-face . highlight))
(default ((t (nil))))
(bold ((t (:bold t))))
(bold-italic ((t (:italic t :bold t))))
(fringe ((t (:background "black"))))
(font-lock-builtin-face ((t (:foreground "#aaccff"))))
(font-lock-comment-face ((t (:italic t :foreground "#9933cc"))))
(font-lock-comment-delimiter-face ((t (:foreground "#9933cc"))))
(font-lock-constant-face ((t (:foreground "#339999"))))
(font-lock-function-name-face ((t (:foreground "#ffcc00"))))
(font-lock-keyword-face ((t (:foreground "#ff6600"))))
(font-lock-preprocessor-face ((t (:foreground "#aaffff"))))
(font-lock-reference-face ((t (:foreground "LightSteelBlue"))))
(font-lock-string-face ((t (:foreground "#66FF00"))))
(font-lock-doc-face ((t (:foreground "LightSalmon"))))
(font-lock-type-face ((t (:foreground "#FFFFFF"))))
(font-lock-variable-name-face ((t (:foreground "#FFFFFF"))))
(font-lock-warning-face ((t (:bold t :foreground "Pink"))))
(paren-face-match-light ((t (:background "#222222"))))
(highlight ((t (:background "#222222"))))
(italic ((t (:italic t))))
(modeline ((t (:background "#444444" :foreground "black"))))
(modeline-buffer-id ((t (:background "#444444" :foreground
"black"))))
(modeline-mousable ((t (:background "#444444" :foreground
"black"))))
(modeline-mousable-minor-mode ((t (:background
"#444444" :foreground "black"))))
(region ((t (:background "#555577"))))
(primary-selection ((t (:background "#555577"))))
(isearch ((t (:background "#555555"))))
(zmacs-region ((t (:background "#555577"))))
(secondary-selection ((t (:background "darkslateblue"))))
(flymake-errline ((t (:background "LightSalmon" :foreground
"black"))))
(flymake-warnline ((t (:background "LightSteelBlue" :foreground
"black"))))
(underline ((t (:underline t))))
(minibuffer-prompt ((t (:bold t :foreground "#ff6600")))))))