forked from emacs-jp/replace-colorthemes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
greiner-theme.el
100 lines (87 loc) · 4.23 KB
/
greiner-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
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
;;; greiner-theme.el --- greiner theme
;; Copyright (C) 2000 by Kevin Greiner
;; Copyright (C) 2013 by Syohei YOSHIDA
;; Author: Syohei YOSHIDA <[email protected]>
;; URL: https://github.com/emacs-jp/replace-colorthemes
;; Version: 0.01
;; This program is free software; you can redistribute it and/or modify
;; it under the terms of the GNU General Public License as published by
;; the Free Software Foundation, either version 3 of the License, or
;; (at your option) any later version.
;; This program is distributed in the hope that it will be useful,
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
;; GNU General Public License for more details.
;; You should have received a copy of the GNU General Public License
;; along with this program. If not, see <http://www.gnu.org/licenses/>.
;;; Commentary:
;;
;; Port of greiner theme from `color-themes'
;;; Code:
(deftheme greiner
"greiner theme")
(custom-theme-set-faces
'greiner
'(default ((t (:background "beige" :foreground "black"))))
'(mouse ((t (:foreground "black"))))
'(cursor ((t (:background "black"))))
'(border ((t (:foreground "black"))))
'(default ((t (nil))))
'(bold ((t (:bold t))))
'(bold-italic ((t (:italic t :bold t))))
'(list-matching-lines-face ((t (:bold t))))
'(custom-button-face ((t (nil))))
'(custom-changed-face ((t (:background "blue" :foreground "white"))))
'(custom-documentation-face ((t (nil))))
'(custom-face-tag-face ((t (:underline t))))
'(custom-group-tag-face ((t (:underline t :foreground "blue"))))
'(custom-group-tag-face-1 ((t (:underline t :foreground "red"))))
'(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 "dark green"))))
'(custom-variable-button-face ((t (:underline t :bold t))))
'(custom-variable-tag-face ((t (:underline t :foreground "blue"))))
'(font-lock-builtin-face ((t (:foreground "blue4"))))
'(font-lock-comment-face ((t (:foreground "Firebrick"))))
'(font-lock-constant-face ((t (:foreground "CadetBlue"))))
'(font-lock-function-name-face ((t (:foreground "Blue"))))
'(font-lock-keyword-face ((t (:foreground "royal blue"))))
'(font-lock-string-face ((t (:foreground "RosyBrown"))))
'(font-lock-type-face ((t (:foreground "ForestGreen"))))
'(font-lock-variable-name-face ((t (:foreground "DarkGoldenrod"))))
'(font-lock-warning-face ((t (:bold t :foreground "Red"))))
'(highlight ((t (:background "darkseagreen2"))))
'(info-menu-5 ((t (:underline t))))
'(info-node ((t (:italic t :bold t))))
'(info-xref ((t (:bold t))))
'(italic ((t (:italic t))))
'(modeline ((t (:background "black" :foreground "white"))))
'(modeline-mousable-minor-mode ((t (:background "black" :foreground "white"))))
'(modeline-mousable ((t (:background "black" :foreground "white"))))
'(modeline-buffer-id ((t (:background "black" :foreground "white"))))
'(region ((t (:background "gray"))))
'(secondary-selection ((t (:background "paleturquoise"))))
'(show-paren-match-face ((t (:background "turquoise"))))
'(show-paren-mismatch-face ((t (:background "purple" :foreground "white"))))
'(speedbar-button-face ((t (:foreground "green4"))))
'(speedbar-directory-face ((t (:foreground "blue4"))))
'(speedbar-file-face ((t (:foreground "cyan4"))))
'(speedbar-highlight-face ((t (:background "green"))))
'(speedbar-selected-face ((t (:underline t :foreground "red"))))
'(speedbar-tag-face ((t (:foreground "brown"))))
'(underline ((t (:underline t))))
'(widget-button-face ((t (:bold t))))
'(widget-button-pressed-face ((t (:foreground "red"))))
'(widget-documentation-face ((t (:foreground "dark green"))))
'(widget-field-face ((t (:background "gray85"))))
'(widget-inactive-face ((t (:foreground "dim gray"))))
'(widget-single-line-field-face ((t (:background "gray85")))))
;;;###autoload
(when load-file-name
(add-to-list 'custom-theme-load-path
(file-name-as-directory (file-name-directory load-file-name))))
(provide-theme 'greiner)
;;; greiner-theme.el ends here