-
Notifications
You must be signed in to change notification settings - Fork 1
/
cybergrind-theme.el
51 lines (49 loc) · 3.67 KB
/
cybergrind-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
(deftheme cybergrind
"Created 2019-04-22.")
(custom-theme-set-faces
'cybergrind
'(default ((t (:family "default" :foundry "default" :width normal :height 1 :weight normal :slant normal :underline nil :overline nil :strike-through nil :box nil :inverse-video nil :foreground "#DCDCCC" :background "#3F3F3F" :stipple nil :inherit nil))))
'(cursor ((t (:foreground "#DCDCCC" :background "#FFFFEF"))))
'(fixed-pitch ((t (:family "Monospace"))))
'(variable-pitch ((((type w32)) (:foundry "outline" :family "Arial")) (t (:family "Sans Serif"))))
'(escape-glyph ((t (:weight bold :foreground "#F0DFAF"))))
'(homoglyph ((((background dark)) (:foreground "cyan")) (((type pc)) (:foreground "magenta")) (t (:foreground "brown"))))
'(minibuffer-prompt ((t (:foreground "#F0DFAF"))))
'(highlight ((t (:background "#383838"))))
'(region ((t (:background "#2B2B2B"))))
'(shadow ((((class color grayscale) (min-colors 88) (background light)) (:foreground "grey50")) (((class color grayscale) (min-colors 88) (background dark)) (:foreground "grey70")) (((class color) (min-colors 8) (background light)) (:foreground "green")) (((class color) (min-colors 8) (background dark)) (:foreground "yellow"))))
'(secondary-selection ((t (:background "#5F5F5F"))))
'(trailing-whitespace ((t (:background "#CC9393"))))
'(font-lock-builtin-face ((t (:weight bold :foreground "#DCDCCC"))))
'(font-lock-comment-delimiter-face ((t (:foreground "#5F7F5F"))))
'(font-lock-comment-face ((t (:foreground "#7F9F7F"))))
'(font-lock-constant-face ((t (:foreground "#BFEBBF"))))
'(font-lock-doc-face ((t (:foreground "#9FC59F"))))
'(font-lock-function-name-face ((t (:foreground "#93E0E3"))))
'(font-lock-keyword-face ((t (:weight bold :foreground "#F0DFAF"))))
'(font-lock-negation-char-face ((t (:weight bold :foreground "#F0DFAF"))))
'(font-lock-preprocessor-face ((t (:foreground "#94BFF3"))))
'(font-lock-regexp-grouping-backslash ((t (:weight bold :foreground "#7F9F7F"))))
'(font-lock-regexp-grouping-construct ((t (:weight bold :foreground "#F0DFAF"))))
'(font-lock-string-face ((t (:foreground "#CC9393"))))
'(font-lock-type-face ((t (:foreground "#7CB8BB"))))
'(font-lock-variable-name-face ((t (:foreground "#DFAF8F"))))
'(font-lock-warning-face ((t (:weight bold :foreground "#D0BF8F"))))
'(button ((t (:underline (:color foreground-color :style line)))))
'(link ((t (:weight bold :underline (:color foreground-color :style line) :foreground "#F0DFAF"))))
'(link-visited ((t (:weight normal :underline (:color foreground-color :style line) :foreground "#D0BF8F"))))
'(fringe ((t (:foreground "#DCDCCC" :background "#4F4F4F"))))
'(header-line ((t (:box (:line-width -1 :color nil :style released-button) :foreground "#F0DFAF" :background "#2B2B2B"))))
'(tooltip ((t (:foreground "#DCDCCC" :background "#4F4F4F"))))
'(mode-line ((t (:box (:line-width -1 :color nil :style released-button) :foreground "#8FB28F" :background "#2B2B2B"))))
'(mode-line-buffer-id ((t (:weight bold :foreground "#F0DFAF"))))
'(mode-line-emphasis ((t (:weight bold))))
'(mode-line-highlight ((((class color) (min-colors 88)) (:box (:line-width 2 :color "grey40" :style released-button))) (t (:inherit (highlight)))))
'(mode-line-inactive ((t (:box (:line-width -1 :color nil :style released-button) :foreground "#5F7F5F" :background "#383838"))))
'(isearch ((t (:weight bold :foreground "#D0BF8F" :background "#5F5F5F"))))
'(isearch-fail ((t (:foreground "#DCDCCC" :background "#8C5353"))))
'(lazy-highlight ((t (:weight bold :foreground "#D0BF8F" :background "#383838"))))
'(match ((t (:weight bold :foreground "#DFAF8F" :background "#2B2B2B"))))
'(next-error ((t (:inherit (region)))))
'(query-replace ((t (:inherit (isearch))))))
(provide-theme 'cybergrind)