* text.texi (Special Properties): Clarify the format of `face'
[bpt/emacs.git] / etc / themes / tsdh-light-theme.el
CommitLineData
042d8936 1;;; tsdh-light-theme.el --- Tassilo's light custom theme
2d3e1aed
TH
2
3;; Copyright (C) 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
042d8936 22(deftheme tsdh-light
c5dd5a51
CY
23 "Minor tweaks to the Emacs white-background defaults.
24Used and created by Tassilo Horn.")
2d3e1aed
TH
25
26(custom-theme-set-faces
042d8936 27 'tsdh-light
2d3e1aed
TH
28 '(default ((t (:background "white" :foreground "black"))))
29 '(diff-added ((t (:inherit diff-changed :background "light green"))))
30 '(diff-changed ((t (:background "light steel blue"))))
31 '(diff-indicator-added ((t (:inherit diff-indicator-changed))))
32 '(diff-indicator-changed ((t (:weight bold))))
33 '(diff-indicator-removed ((t (:inherit diff-indicator-changed))))
34 '(diff-removed ((t (:inherit diff-changed :background "sandy brown"))))
35e0ebb4 35 '(dired-directory ((t (:inherit font-lock-function-name-face :weight bold))))
885b8edb 36 '(header-line ((t (:inherit mode-line :inverse-video t))))
2d3e1aed
TH
37 '(hl-line ((t (:background "grey95"))))
38 '(minibuffer-prompt ((t (:background "yellow" :foreground "medium blue" :box (:line-width -1 :color "red" :style released-button) :weight bold))))
39 '(mode-line ((t (:box (:line-width -1 :color "red" :style released-button) :family "DejaVu Sans"))))
40 '(mode-line-inactive ((t (:inherit mode-line :foreground "dim gray"))))
41 '(org-agenda-date ((t (:inherit org-agenda-structure))))
42 '(org-agenda-date-today ((t (:inherit org-agenda-date :underline t))))
43 '(org-agenda-date-weekend ((t (:inherit org-agenda-date :foreground "dark green"))))
44 '(org-agenda-structure ((t (:foreground "Blue1" :weight bold :height 1.1 :family "DeJaVu Sans"))))
45 '(org-hide ((t (:foreground "white"))))
46 '(org-tag ((t (:weight bold))))
47 '(outline-1 ((t (:inherit font-lock-function-name-face :weight bold))))
48 '(outline-2 ((t (:inherit font-lock-variable-name-face :weight bold))))
49 '(outline-3 ((t (:inherit font-lock-keyword-face :weight bold))))
50 '(outline-4 ((t (:inherit font-lock-comment-face :weight bold))))
51 '(outline-5 ((t (:inherit font-lock-type-face :weight bold))))
52 '(outline-6 ((t (:inherit font-lock-constant-face :weight bold))))
53 '(outline-7 ((t (:inherit font-lock-builtin-face :weight bold))))
54 '(outline-8 ((t (:inherit font-lock-string-face :weight bold))))
55 '(region ((t (:background "lightgoldenrod1"))))
56 '(show-paren-match ((t (:background "LightCyan2"))))
57 '(show-paren-mismatch ((t (:background "deep pink"))))
58 '(window-number-face ((t (:foreground "red" :weight bold)))))
59
042d8936 60(provide-theme 'tsdh-light)
0d53df48
KG
61
62
63;; Local Variables:
64;; no-byte-compile: t
65;; End:
66
67;;; tsdh-light-theme.el ends here