1 ;;; tsdh-dark-theme.el --- Tassilo's dark custom theme
3 ;; Copyright (C) 2011-2013 Free Software Foundation, Inc.
5 ;; This file is part of GNU Emacs.
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.
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.
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/>.
23 "Minor tweaks to the Emacs dark-background defaults.
24 Used and created by Tassilo Horn.")
26 (custom-theme-set-faces
28 '(default ((t (:background
"gray20" :foreground
"white smoke"))))
29 '(compilation-mode-line-fail ((t (:foreground
"red"))))
30 '(compilation-mode-line-run ((t (:foreground
"dark orange"))))
31 '(compilation-mode-line-exit ((t (:foreground
"sea green"))))
32 '(diff-added ((t (:inherit diff-changed
:background
"dark green"))))
33 '(diff-changed ((t (:background
"midnight blue"))))
34 '(diff-indicator-added ((t (:inherit diff-indicator-changed
))))
35 '(diff-indicator-changed ((t (:weight bold
))))
36 '(diff-indicator-removed ((t (:inherit diff-indicator-changed
))))
37 '(diff-removed ((t (:inherit diff-changed
:background
"dark red"))))
38 '(dired-directory ((t (:inherit font-lock-function-name-face
:weight bold
))))
39 '(gnus-button ((t (:inherit button
))))
40 '(gnus-header-name ((t (:box
(:line-width
1 :style released-button
) :weight bold
))))
41 '(header-line ((t (:inherit mode-line
:inverse-video t
))))
42 '(hl-line ((t (:background
"grey28"))))
43 '(message-header-subject ((t (:foreground
"SkyBlue"))))
44 '(minibuffer-prompt ((t (:background
"yellow" :foreground
"medium blue" :box
(:line-width -
1 :color
"red" :style released-button
) :weight bold
))))
45 '(mode-line ((t (:box
(:line-width -
1 :color
"red" :style released-button
) :family
"DejaVu Sans"))))
46 '(mode-line-inactive ((t (:inherit mode-line
:foreground
"gray"))))
47 '(org-agenda-date ((t (:inherit org-agenda-structure
))))
48 '(org-agenda-date-today ((t (:inherit org-agenda-date
:underline t
))))
49 '(org-agenda-date-weekend ((t (:inherit org-agenda-date
:foreground
"dark green"))))
50 '(org-agenda-structure ((t (:foreground
"SkyBlue" :weight bold
))))
51 '(org-hide ((t (:foreground
"gray30"))))
52 '(org-tag ((t (:weight bold
))))
53 '(outline-1 ((t (:inherit font-lock-function-name-face
:weight bold
))))
54 '(outline-2 ((t (:inherit font-lock-variable-name-face
:weight bold
))))
55 '(outline-3 ((t (:inherit font-lock-keyword-face
:weight bold
))))
56 '(outline-4 ((t (:inherit font-lock-comment-face
:weight bold
))))
57 '(outline-5 ((t (:inherit font-lock-type-face
:weight bold
))))
58 '(outline-6 ((t (:inherit font-lock-constant-face
:weight bold
))))
59 '(outline-7 ((t (:inherit font-lock-builtin-face
:weight bold
))))
60 '(outline-8 ((t (:inherit font-lock-string-face
:weight bold
))))
61 '(rcirc-my-nick ((t (:foreground
"LightSkyBlue" :weight bold
))))
62 '(region ((t (:background
"SteelBlue4"))))
63 '(show-paren-match ((t (:background
"DarkGreen"))))
64 '(show-paren-mismatch ((t (:background
"deep pink"))))
65 '(window-number-face ((t (:foreground
"red" :weight bold
)))))
67 (provide-theme 'tsdh-dark
)
73 ;;; tsdh-dark-theme.el ends here