-
Notifications
You must be signed in to change notification settings - Fork 4
/
eink-theme.el
66 lines (64 loc) · 3.57 KB
/
eink-theme.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
(deftheme eink
"Port of eink.vim theme to emacs")
(custom-theme-set-faces
'eink
'(font-lock-builtin-face ((t (:background "white smoke" :foreground "#262626"))))
'(region ((t (:background "#949494" :foreground "white smoke"))))
'(highlight ((t nil)))
'(cursor ((t (:background "#949494" :foreground "white smoke"))))
'(show-paren-match-face ((t (:background "#949494" :foreground "white smoke"))))
'(isearch ((t (:background "#e2e2e5" :foreground "#262626"))))
'(modeline ((t (:background "white smoke" :foreground "#262626" :weight bold))))
'(minibuffer-prompt ((t (:foreground "#262626" :weight bold))))
'(default-italic ((t (:italic t))))
'(font-lock-comment-face ((t (:foreground "#808080"))))
'(font-lock-comment-delimiter-face ((t (:foreground "#808080"))))
'(font-lock-constant-face ((t (:foreground "#262626"))))
'(font-lock-doc-face ((t (:foreground "#262626"))))
'(font-lock-function-name-face ((t (:foreground "#262626"))))
'(font-lock-keyword-face ((t (:foreground "#262626"))))
'(font-lock-preprocessor-face ((t (:foreground "#262626"))))
'(font-lock-reference-face ((t (:foreground "#262626"))))
'(font-lock-string-face ((t (:foreground "#a9a9a9"))))
'(font-lock-type-face ((t (:foreground "#262626"))))
'(font-lock-variable-name-face ((t (:foreground "#262626"))))
'(font-lock-warning-face ((t (:foreground "#262626"))))
'(link ((t (:foreground "#262626"))))
'(org-hide ((t (:foreground "#262626"))))
'(org-level-1 ((t (:foreground "#262626" :weight bold :height 1.1))))
'(org-level-2 ((t (:foreground "#262626" :weight normal :height 1.1))))
'(org-level-3 ((t (:foreground "#262626" :weight bold :height 1.1))))
'(org-level-4 ((t (:foreground "#262626" :weight normal :height 1.0))))
'(org-special-keyword ((t (:foreground "#262626"))))
'(org-block ((t (:foreground "#262626"))))
'(org-quote ((t (:foreground "#262626" :slant italic :inherit org-block))))
'(org-verse ((t (:inherit org-block :slant italic))))
'(org-todo ((t (:foreground "#262626" :weight bold))))
'(org-done ((t (:foreground "#a9a9a9" :weight bold))))
'(org-agenda-structure ((t (:foreground "#262626" :weight bold))))
'(org-date ((t (:foreground "#262626") :underline)))
'(org-agenda-date ((t (:foreground "#262626" :height 1.2))))
'(org-agenda-date-weekend ((t (:foreground "#262626" :weight normal))))
'(org-agenda-date-today ((t (:foreground "#262626" :weight bold :height 1.4))))
'(org-scheduled ((t (:foreground "#262626"))))
'(font-latex-bold-face ((t (:foreground "#262626"))))
'(font-latex-italic-face ((t (:foreground "#262626" :slant italic))))
'(font-latex-string-face ((t (:foreground "#a9a9a9"))))
'(font-latex-match-reference-keywords ((t (:foreground "#262626"))))
'(font-latex-match-variable-keywords ((t (:foreground "#262626"))))
'(ido-only-match ((t (:foreground "#262626"))))
'(org-sexp-date ((t (:foreground "#262626"))))
'(ido-first-match ((t (:foreground "#262626"))))
'(gnus-header-content ((t (:foreground "#262626"))))
'(gnus-header-from ((t (:foreground "#262626"))))
'(gnus-header-name ((t (:foreground "#262626"))))
'(gnus-header-subject ((t (:foreground "#262626"))))
'(slime-repl-inputed-output-face ((t (:foreground "#262626"))))
'(ido-subdir ((t (:foreground "#262626"))))
'(eshell-prompt ((t (:foreground "#262626" :weight bold))))
'(custom-variable-tag ((t (:foreground "#262626" :weight bold))))
'(mode-line ((t (:background "grey90" :foreground "#262626" :box (:line-width -1 :style released-button)))))
'(default ((t (:background "white smoke" :foreground "#262626"))))
'(whitespace-line ((t (:background "#262626" :foreground "white smoke"))))
)
(provide-theme 'eink)