]> code.delx.au - gnu-emacs/blob - etc/themes/tsdh-light-theme.el
Update copyright year to 2016
[gnu-emacs] / etc / themes / tsdh-light-theme.el
1 ;;; tsdh-light-theme.el --- Tassilo's light custom theme
2
3 ;; Copyright (C) 2011-2016 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-light
23 "Minor tweaks to the Emacs white-background defaults.
24 Used and created by Tassilo Horn.")
25
26 (custom-theme-set-faces
27 'tsdh-light
28 '(Info-quoted ((t (:weight bold))))
29 '(ace-jump-face-foreground ((t (:foreground "DeepPink" :box nil :weight bold))))
30 '(aw-leading-char-face ((t (:inherit ace-jump-face-foreground))))
31 '(default ((t (:background "white" :foreground "black"))))
32 '(diff-added ((t (:inherit diff-changed :background "light green"))))
33 '(diff-changed ((t (:background "light steel 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 "sandy brown"))))
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 '(gnus-group-mail-1 ((t (:inherit gnus-group-mail-1-empty :weight bold))))
42 '(gnus-group-mail-1-empty ((t (:foreground "DodgerBlue4"))))
43 '(gnus-group-mail-2 ((t (:inherit gnus-group-mail-2-empty :weight bold))))
44 '(gnus-group-mail-2-empty ((t (:foreground "DodgerBlue3"))))
45 '(gnus-group-mail-3 ((t (:inherit gnus-group-mail-3-empty :weight bold))))
46 '(gnus-group-mail-3-empty ((t (:foreground "DodgerBlue2"))))
47 '(gnus-group-news-1 ((t (:inherit gnus-group-news-1-empty :weight bold))))
48 '(gnus-group-news-1-empty ((t (:foreground "tomato4"))))
49 '(gnus-group-news-2 ((t (:inherit gnus-group-news-2-empty :weight bold))))
50 '(gnus-group-news-2-empty ((t (:foreground "tomato3"))))
51 '(gnus-group-news-3 ((t (:inherit gnus-group-news-3-empty :weight bold))))
52 '(gnus-group-news-3-empty ((t (:foreground "tomato2")))) '(header-line ((t (:inherit mode-line :inverse-video t))))
53 '(hl-line ((t (:background "grey95"))))
54 '(hl-paren-face ((t (:weight bold))) t)
55 '(minibuffer-prompt ((t (:background "yellow" :foreground "medium blue" :box (:line-width -1 :color "red" :style released-button) :weight bold))))
56 '(mode-line ((t (:background "wheat" :foreground "black" :box (:line-width 1 :color "tan") :family "DejaVu Sans"))))
57 '(mode-line-inactive ((t (:inherit mode-line :foreground "dark gray"))))
58 '(org-agenda-date ((t (:inherit org-agenda-structure))))
59 '(org-agenda-date-today ((t (:inherit org-agenda-date :underline t))))
60 '(org-agenda-date-weekend ((t (:inherit org-agenda-date :foreground "dark green"))))
61 '(org-agenda-structure ((t (:foreground "Blue1" :weight bold :height 1.1 :family "DeJaVu Sans"))))
62 '(org-hide ((t (:foreground "white"))))
63 '(org-level-1 ((t (:inherit outline-1 :box nil))))
64 '(org-level-2 ((t (:inherit outline-2 :box nil))))
65 '(org-level-3 ((t (:inherit outline-3 :box nil))))
66 '(org-level-4 ((t (:inherit outline-4 :box nil))))
67 '(org-level-5 ((t (:inherit outline-5 :box nil))))
68 '(org-level-6 ((t (:inherit outline-6 :box nil))))
69 '(org-level-7 ((t (:inherit outline-7 :box nil))))
70 '(org-level-8 ((t (:inherit outline-8 :box nil))))
71 '(org-tag ((t (:weight bold))))
72 '(outline-1 ((t (:inherit font-lock-function-name-face :weight bold))))
73 '(outline-2 ((t (:inherit font-lock-variable-name-face :weight bold))))
74 '(outline-3 ((t (:inherit font-lock-keyword-face :weight bold))))
75 '(outline-4 ((t (:inherit font-lock-comment-face :weight bold))))
76 '(outline-5 ((t (:inherit font-lock-type-face :weight bold))))
77 '(outline-6 ((t (:inherit font-lock-constant-face :weight bold))))
78 '(outline-7 ((t (:inherit font-lock-builtin-face :weight bold))))
79 '(outline-8 ((t (:inherit font-lock-string-face :weight bold))))
80 '(rcirc-my-nick ((t (:foreground "LightSkyBlue" :weight bold))))
81 '(region ((t (:background "lightgoldenrod1"))))
82 '(show-paren-match ((t (:background "Cyan1" :weight bold))))
83 '(show-paren-mismatch ((t (:background "deep pink" :weight bold))))
84 '(window-number-face ((t (:foreground "red" :weight bold)))))
85
86 (provide-theme 'tsdh-light)
87
88
89 ;; Local Variables:
90 ;; no-byte-compile: t
91 ;; End:
92
93 ;;; tsdh-light-theme.el ends here