]> code.delx.au - gnu-emacs/blob - etc/themes/tsdh-dark-theme.el
Merge from emacs-24; up to 2012-12-06T01:39:03Z!monnier@iro.umontreal.ca
[gnu-emacs] / etc / themes / tsdh-dark-theme.el
1 ;;; tsdh-dark-theme.el --- Tassilo's dark custom theme
2
3 ;; Copyright (C) 2011-2013 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 tsdh-dark
23 "Minor tweaks to the Emacs dark-background defaults.
24 Used and created by Tassilo Horn.")
25
26 (custom-theme-set-faces
27 'tsdh-dark
28 '(default ((t (:background "gray20" :foreground "white smoke"))))
29 '(diff-added ((t (:inherit diff-changed :background "dark green"))) t)
30 '(diff-changed ((t (:background "midnight blue"))) t)
31 '(diff-indicator-added ((t (:inherit diff-indicator-changed))) t)
32 '(diff-indicator-changed ((t (:weight bold))) t)
33 '(diff-indicator-removed ((t (:inherit diff-indicator-changed))) t)
34 '(diff-removed ((t (:inherit diff-changed :background "dark red"))) t)
35 '(dired-directory ((t (:foreground "DodgerBlue" :weight bold))))
36 '(error ((t (:foreground "deep pink" :weight bold))))
37 '(font-lock-builtin-face ((t (:foreground "chartreuse2"))))
38 '(font-lock-comment-face ((t (:foreground "peru"))))
39 '(font-lock-constant-face ((t (:foreground "dodger blue"))))
40 '(font-lock-doc-face ((t (:foreground "indian red"))))
41 '(font-lock-function-name-face ((t (:foreground "spring green"))))
42 '(font-lock-keyword-face ((t (:foreground "light sea green" :weight bold))))
43 '(font-lock-preprocessor-face ((t (:foreground "cornflower blue"))))
44 '(font-lock-string-face ((t (:foreground "light salmon"))))
45 '(font-lock-type-face ((t (:foreground "medium purple"))))
46 '(font-lock-variable-name-face ((t (:foreground "yellow green"))))
47 '(font-lock-warning-face ((t (:foreground "hot pink"))))
48 '(gnus-button ((t (:inherit button))))
49 '(gnus-cite-1 ((t (:foreground "dark turquoise"))) t)
50 '(gnus-group-mail-1 ((t (:inherit gnus-group-mail-1-empty :weight bold))))
51 '(gnus-group-mail-1-empty ((t (:foreground "#00CC00"))))
52 '(gnus-group-mail-3 ((t (:inherit gnus-group-mail-3-empty :weight bold))))
53 '(gnus-group-mail-3-empty ((t (:foreground "#009999"))))
54 '(gnus-group-news-3 ((t (:inherit gnus-group-news-3-empty :weight bold))))
55 '(gnus-group-news-3-empty ((t (:foreground "light green"))))
56 '(gnus-header-content ((t (:foreground "#A64B00"))))
57 '(gnus-header-name ((t (:weight bold))))
58 '(gnus-header-subject ((t (:foreground "#A64B00" :weight bold))))
59 '(gnus-summary-high-ancient ((t (:foreground "#A64B00" :weight bold))))
60 '(gnus-summary-low-ancient ((t (:foreground "medium turquoise" :slant italic))))
61 '(gnus-summary-low-read ((t (:foreground "dark sea green" :slant italic))))
62 '(header-line ((t (:inverse-video t :box (:line-width -1 :color "red" :style released-button)))))
63 '(helm-header ((t (:background "DeepSkyBlue4" :weight bold))))
64 '(highlight ((t (:background "sea green"))))
65 '(hl-line ((t (:background "grey25"))))
66 '(hl-paren-face ((t (:weight bold))) t)
67 '(lusty-file-face ((t (:foreground "SpringGreen1"))) t)
68 '(menu ((t (:background "gray30" :foreground "gray70"))))
69 '(minibuffer-prompt ((t (:background "yellow" :foreground "medium blue" :box (:line-width -1 :color "red" :style released-button) :weight bold))))
70 '(mode-line ((t (:box (:line-width 1 :color "red") :family "DejaVu Sans"))))
71 '(mode-line-inactive ((t (:inherit mode-line :foreground "dim gray"))))
72 '(org-agenda-date ((t (:inherit org-agenda-structure))) t)
73 '(org-agenda-date-today ((t (:inherit org-agenda-date :underline t))) t)
74 '(org-agenda-date-weekend ((t (:inherit org-agenda-date :foreground "green"))) t)
75 '(org-agenda-done ((t (:foreground "#269926"))))
76 '(org-agenda-restriction-lock ((t (:background "#FFB273"))))
77 '(org-agenda-structure ((t (:foreground "#4671D5" :weight bold))))
78 '(org-date ((t (:foreground "medium sea green" :underline t))))
79 '(org-done ((t (:foreground "#008500" :weight bold))))
80 '(org-drawer ((t (:foreground "#2A4480"))))
81 '(org-ellipsis ((t (:foreground "#FF7400" :underline t))))
82 '(org-footnote ((t (:foreground "#1240AB" :underline t))))
83 '(org-hide ((t (:foreground "gray20"))))
84 '(org-level-1 ((t (:inherit outline-1 :box nil))))
85 '(org-level-2 ((t (:inherit outline-2 :box nil))))
86 '(org-level-3 ((t (:inherit outline-3 :box nil))))
87 '(org-level-4 ((t (:inherit outline-4 :box nil))))
88 '(org-level-5 ((t (:inherit outline-5 :box nil))))
89 '(org-level-6 ((t (:inherit outline-6 :box nil))))
90 '(org-level-7 ((t (:inherit outline-7 :box nil))))
91 '(org-level-8 ((t (:inherit outline-8 :box nil))))
92 '(org-scheduled-previously ((t (:foreground "#FF7400"))))
93 '(org-tag ((t (:weight bold))))
94 '(org-todo ((t (:foreground "#FF6961" :weight bold))))
95 '(outline-1 ((t (:foreground "cyan1" :box (:line-width 1 :color "gainsboro") :weight bold))))
96 '(outline-2 ((t (:foreground "SeaGreen1" :box (:line-width 1 :color "gainsboro") :weight bold))))
97 '(outline-3 ((t (:foreground "cyan3" :box (:line-width 1 :color "gainsboro") :weight bold))))
98 '(outline-4 ((t (:foreground "SeaGreen3" :box (:line-width 1 :color "gainsboro") :weight bold))))
99 '(outline-5 ((t (:foreground "LightGoldenrod1" :box (:line-width 1 :color "gainsboro") :weight bold))))
100 '(outline-6 ((t (:foreground "light salmon" :box (:line-width 1 :color "gainsboro") :weight bold))))
101 '(outline-7 ((t (:foreground "pale goldenrod" :box (:line-width 1 :color "gainsboro") :weight bold))))
102 '(outline-8 ((t (:foreground "OliveDrab1" :box (:line-width 1 :color "gainsboro") :weight bold))))
103 '(rcirc-my-nick ((t (:foreground "SpringGreen1" :weight bold))) t)
104 '(rcirc-other-nick ((t (:foreground "dodger blue"))) t)
105 '(rcirc-track-keyword ((t (:foreground "DodgerBlue" :weight bold))) t)
106 '(rcirc-track-nick ((t (:background "yellow" :foreground "DodgerBlue" :weight bold))) t)
107 '(region ((t (:background "SeaGreen4"))))
108 '(scroll-bar ((t (:background "gray20" :foreground "dark turquoise"))))
109 '(secondary-selection ((t (:background "#333366" :foreground "#f6f3e8"))))
110 '(show-paren-match ((t (:background "DeepSkyBlue4"))))
111 '(show-paren-mismatch ((t (:background "dark magenta"))))
112 '(th-sentence-hl-face ((t (:weight bold))))
113 '(widget-field ((t (:box (:line-width 2 :color "grey75" :style pressed-button)))))
114 '(window-number-face ((t (:foreground "red" :weight bold)))))
115
116 (provide-theme 'tsdh-dark)
117
118 ;; Local Variables:
119 ;; no-byte-compile: t
120 ;; End:
121
122 ;;; tsdh-dark-theme.el ends here