]> code.delx.au - gnu-emacs/blob - etc/themes/wheatgrass-theme.el
1a86524ffaf66c0717508a0008e6a5505bfaf5b4
[gnu-emacs] / etc / themes / wheatgrass-theme.el
1 ;;; wheatgrass-theme.el --- custom theme for faces
2
3 ;; Copyright (C) 2010, 2011 Free Software Foundation, Inc.
4
5 ;; This file is part of GNU Emacs.
6
7 ;; GNU Emacs is free software: you can redistribute it and/or modify
8 ;; it under the terms of the GNU General Public License as published by
9 ;; the Free Software Foundation, either version 3 of the License, or
10 ;; (at your option) any later version.
11
12 ;; GNU Emacs is distributed in the hope that it will be useful,
13 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
14 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 ;; GNU General Public License for more details.
16
17 ;; You should have received a copy of the GNU General Public License
18 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
19
20 ;;; Code:
21
22 (deftheme wheatgrass
23 "Theme for basic, Font Lock, Isearch, Gnus, and Message faces.
24 The default face is wheat on a black background. Other faces
25 are in shades of green, brown, and blue.")
26
27 (custom-theme-set-faces
28 'wheatgrass
29 '(default ((t (:foreground "wheat" :background "black"))))
30 '(cursor ((t (:foreground "black" :background "thistle"))))
31 '(highlight ((t (:foreground "white" :background "dark green"))))
32 '(region ((t (:foreground "white" :background "dark green"))))
33 '(font-lock-builtin-face ((t (:foreground "LightSteelBlue"))))
34 '(font-lock-comment-face ((t (:foreground "SpringGreen3"))))
35 '(font-lock-constant-face ((t (:foreground "turquoise"))))
36 '(font-lock-function-name-face ((t (:foreground "pale green"))))
37 '(font-lock-keyword-face ((t (:foreground "white"))))
38 '(font-lock-string-face ((t (:foreground "dark khaki"))))
39 '(font-lock-type-face ((t (:foreground "aquamarine"))))
40 '(font-lock-variable-name-face ((t (:foreground "yellow green"))))
41 '(font-lock-warning-face ((t (:foreground "salmon1"))))
42 '(button ((t (:underline t :foreground "cyan"))))
43 '(link ((t (:underline t :foreground "cyan"))))
44 '(link-visited ((t (:underline t :foreground "dark cyan"))))
45 '(isearch ((t (:foreground "white" :background "dark goldenrod"))))
46 '(lazy-highlight ((t (:background "gray25"))))
47 '(gnus-header-content ((t (:weight normal :foreground "yellow green"))))
48 '(gnus-header-from ((t (:foreground "pale green"))))
49 '(gnus-header-subject ((t (:foreground "pale turquoise"))))
50 '(gnus-header-name ((t (:foreground "dark sea green"))))
51 '(gnus-header-newsgroups ((t (:foreground "dark khaki"))))
52 '(message-header-name ((t (:foreground "dark turquoise"))))
53 '(message-header-cc ((t (:foreground "yellow green"))))
54 '(message-header-other ((t (:foreground "dark khaki"))))
55 '(message-header-subject ((t (:foreground "pale turquoise"))))
56 '(message-header-to ((t (:foreground "pale green"))))
57 '(message-cited-text ((t (:foreground "SpringGreen3"))))
58 '(message-separator ((t (:foreground "deep sky blue")))))
59
60 (provide-theme 'wheatgrass)
61
62 ;; Local Variables:
63 ;; no-byte-compile: t
64 ;; End:
65
66 ;;; wheatgrass-theme.el ends here