Merge changes from emacs-23 branch
[bpt/emacs.git] / etc / themes / tango-dark-theme.el
1 ;;; tango-dark-theme.el --- Tango-based custom theme for faces
2
3 ;; Copyright (C) 2010 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 ;;; Commentary
21
22 ;; The colors in this theme come from the Tango palette, which is in
23 ;; the public domain: http://tango.freedesktop.org/
24
25 ;;; Code:
26
27 (deftheme tango-dark
28 "Theme for faces, based on the Tango palette on a dark background.
29 Basic, Font Lock, Isearch, Gnus, and Message faces are included.")
30
31 (custom-theme-set-faces
32 'tango-dark
33 '(default ((t (:foreground "#eeeeec" :background "#2e3436"))))
34 '(cursor ((t (:foreground "#2e3436" :background "#fce94f"))))
35 '(highlight ((t (:foreground "#2e3436" :background "#edd400"))))
36 '(region ((t (:background "#555753"))))
37 '(font-lock-builtin-face ((t (:foreground "#ad7fa8"))))
38 '(font-lock-comment-face ((t (:foreground "#73d216"))))
39 '(font-lock-constant-face ((t (:foreground "#e6a8df"))))
40 '(font-lock-function-name-face ((t (:foreground "#fce94f"))))
41 '(font-lock-keyword-face ((t (:foreground "#8cc4ff"))))
42 '(font-lock-string-face ((t (:foreground "#e9b96e"))))
43 '(font-lock-type-face ((t (:foreground "#a5ff4d"))))
44 '(font-lock-variable-name-face ((t (:foreground "#fcaf3e"))))
45 '(font-lock-warning-face ((t (:foreground "#ef2929"))))
46 '(button ((t (:underline t :foreground "#729fcf"))))
47 '(link ((t (:underline t :foreground "#729fcf"))))
48 '(link-visited ((t (:underline t :foreground "#3465a4"))))
49 '(mode-line ((t (:box (:line-width -1 :style released-button)
50 :background "#d3d7cf" :foreground "black"))))
51 '(mode-line-inactive ((t (:box (:line-width -1 :style released-button)
52 :background "#555753" :foreground "white"))))
53 '(isearch ((t (:foreground "#ffffff" :background "#ce5c00"))))
54 '(lazy-highlight ((t (:background "#8f5902"))))
55 '(gnus-group-news-1 ((t (:foreground "#ad7fa8"))))
56 '(gnus-group-news-1-low ((t (:foreground "#75507b"))))
57 '(gnus-group-news-2 ((t (:foreground "#729fcf"))))
58 '(gnus-group-news-2-low ((t (:foreground "#3465a4"))))
59 '(gnus-group-news-3 ((t (:foreground "#8ae234"))))
60 '(gnus-group-news-3-low ((t (:foreground "#73d216"))))
61 '(gnus-group-news-4 ((t (:foreground "#e9b9e6"))))
62 '(gnus-group-news-4-low ((t (:foreground "#c17d11"))))
63 '(gnus-group-news-5 ((t (:foreground "#fcaf3e"))))
64 '(gnus-group-news-5-low ((t (:foreground "#f57900"))))
65 '(gnus-group-news-low ((t (:foreground "#edd400"))))
66 '(gnus-group-mail-1 ((t (:foreground "#ad7fa8"))))
67 '(gnus-group-mail-1-low ((t (:foreground "#75507b"))))
68 '(gnus-group-mail-2 ((t (:foreground "#729fcf"))))
69 '(gnus-group-mail-2-low ((t (:foreground "#3465a4"))))
70 '(gnus-group-mail-3 ((t (:foreground "#8ae234"))))
71 '(gnus-group-mail-3-low ((t (:foreground "#73d216"))))
72 '(gnus-group-mail-low ((t (:foreground "#edd400"))))
73 '(gnus-header-content ((t (:weight normal :foreground "#c4a000"))))
74 '(gnus-header-from ((t (:foreground "#edd400"))))
75 '(gnus-header-subject ((t (:foreground "#8ae234"))))
76 '(gnus-header-name ((t (:foreground "#729fcf"))))
77 '(gnus-header-newsgroups ((t (:foreground "#c17d11"))))
78 '(message-header-name ((t (:foreground "#729fcf"))))
79 '(message-header-cc ((t (:foreground "#c4a000"))))
80 '(message-header-other ((t (:foreground "#c17d11"))))
81 '(message-header-subject ((t (:foreground "#8ae234"))))
82 '(message-header-to ((t (:foreground "#edd400"))))
83 '(message-cited-text ((t (:foreground "#8ae234"))))
84 '(message-separator ((t (:foreground "#ad7fa8")))))
85
86 (provide-theme 'tango-dark)
87
88 ;; Local Variables:
89 ;; no-byte-compile: t
90 ;; End:
91
92 ;;; tango-dark-theme.el ends here