diff options
| -rw-r--r-- | etc/ChangeLog | 5 | ||||
| -rw-r--r-- | etc/themes/dev-tsdh-dark-theme.el | 59 | ||||
| -rw-r--r-- | etc/themes/dev-tsdh-light-theme.el | 58 |
3 files changed, 122 insertions, 0 deletions
diff --git a/etc/ChangeLog b/etc/ChangeLog index 77c17aed94a..a0fa1274154 100644 --- a/etc/ChangeLog +++ b/etc/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2011-01-06 Tassilo Horn <tassilo@member.fsf.org> | ||
| 2 | |||
| 3 | * themes/dev-tsdh-light-theme.el (dev-tsdh-light): New theme. | ||
| 4 | * themes/dev-tsdh-dark-theme.el (dev-tsdh-dark): New theme. | ||
| 5 | |||
| 1 | 2011-01-04 Jan Moringen <jan.moringen@uni-bielefeld.de> | 6 | 2011-01-04 Jan Moringen <jan.moringen@uni-bielefeld.de> |
| 2 | 7 | ||
| 3 | * NEWS: Extended behaviour of dbus-register-{method,property}. | 8 | * NEWS: Extended behaviour of dbus-register-{method,property}. |
diff --git a/etc/themes/dev-tsdh-dark-theme.el b/etc/themes/dev-tsdh-dark-theme.el new file mode 100644 index 00000000000..4e9a3422882 --- /dev/null +++ b/etc/themes/dev-tsdh-dark-theme.el | |||
| @@ -0,0 +1,59 @@ | |||
| 1 | ;;; dev-tsdh-dark-theme.el --- Tassilo's dark custom theme | ||
| 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 | |||
| 22 | (deftheme dev-tsdh-dark | ||
| 23 | "Theme with dark background used and created by Tassilo Horn.") | ||
| 24 | |||
| 25 | (custom-theme-set-faces | ||
| 26 | 'dev-tsdh-dark | ||
| 27 | '(default ((t (:background "gray20" :foreground "white smoke")))) | ||
| 28 | '(diff-added ((t (:inherit diff-changed :background "light green")))) | ||
| 29 | '(diff-changed ((t (:background "light steel blue")))) | ||
| 30 | '(diff-indicator-added ((t (:inherit diff-indicator-changed)))) | ||
| 31 | '(diff-indicator-changed ((t (:weight bold)))) | ||
| 32 | '(diff-indicator-removed ((t (:inherit diff-indicator-changed)))) | ||
| 33 | '(diff-removed ((t (:inherit diff-changed :background "sandy brown")))) | ||
| 34 | '(hl-line ((t (:background "grey28")))) | ||
| 35 | '(message-header-subject ((t (:foreground "SkyBlue")))) | ||
| 36 | '(minibuffer-prompt ((t (:background "yellow" :foreground "medium blue" :box (:line-width -1 :color "red" :style released-button) :weight bold)))) | ||
| 37 | '(mode-line ((t (:box (:line-width -1 :color "red" :style released-button) :family "DejaVu Sans")))) | ||
| 38 | '(mode-line-inactive ((t (:inherit mode-line :foreground "dim gray")))) | ||
| 39 | '(org-agenda-date ((t (:inherit org-agenda-structure)))) | ||
| 40 | '(org-agenda-date-today ((t (:inherit org-agenda-date :underline t)))) | ||
| 41 | '(org-agenda-date-weekend ((t (:inherit org-agenda-date :foreground "dark green")))) | ||
| 42 | '(org-agenda-structure ((t (:foreground "SkyBlue" :weight bold)))) | ||
| 43 | '(org-hide ((t (:foreground "gray30")))) | ||
| 44 | '(org-tag ((t (:weight bold)))) | ||
| 45 | '(outline-1 ((t (:inherit font-lock-function-name-face :weight bold)))) | ||
| 46 | '(outline-2 ((t (:inherit font-lock-variable-name-face :weight bold)))) | ||
| 47 | '(outline-3 ((t (:inherit font-lock-keyword-face :weight bold)))) | ||
| 48 | '(outline-4 ((t (:inherit font-lock-comment-face :weight bold)))) | ||
| 49 | '(outline-5 ((t (:inherit font-lock-type-face :weight bold)))) | ||
| 50 | '(outline-6 ((t (:inherit font-lock-constant-face :weight bold)))) | ||
| 51 | '(outline-7 ((t (:inherit font-lock-builtin-face :weight bold)))) | ||
| 52 | '(outline-8 ((t (:inherit font-lock-string-face :weight bold)))) | ||
| 53 | '(region ((t (:background "SteelBlue4")))) | ||
| 54 | '(show-paren-match ((t (:background "DarkGreen")))) | ||
| 55 | '(show-paren-mismatch ((t (:background "deep pink")))) | ||
| 56 | '(window-number-face ((t (:foreground "red" :weight bold))))) | ||
| 57 | |||
| 58 | (provide-theme 'dev-tsdh-dark) | ||
| 59 | |||
diff --git a/etc/themes/dev-tsdh-light-theme.el b/etc/themes/dev-tsdh-light-theme.el new file mode 100644 index 00000000000..b614dcedd89 --- /dev/null +++ b/etc/themes/dev-tsdh-light-theme.el | |||
| @@ -0,0 +1,58 @@ | |||
| 1 | ;;; dev-tsdh-light-theme.el --- Tassilo's light custom theme | ||
| 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 | |||
| 22 | (deftheme dev-tsdh-light | ||
| 23 | "Black on white theme used and created by Tassilo Horn.") | ||
| 24 | |||
| 25 | (custom-theme-set-faces | ||
| 26 | 'dev-tsdh-light | ||
| 27 | '(default ((t (:background "white" :foreground "black")))) | ||
| 28 | '(diff-added ((t (:inherit diff-changed :background "light green")))) | ||
| 29 | '(diff-changed ((t (:background "light steel blue")))) | ||
| 30 | '(diff-indicator-added ((t (:inherit diff-indicator-changed)))) | ||
| 31 | '(diff-indicator-changed ((t (:weight bold)))) | ||
| 32 | '(diff-indicator-removed ((t (:inherit diff-indicator-changed)))) | ||
| 33 | '(diff-removed ((t (:inherit diff-changed :background "sandy brown")))) | ||
| 34 | '(hl-line ((t (:background "grey95")))) | ||
| 35 | '(minibuffer-prompt ((t (:background "yellow" :foreground "medium blue" :box (:line-width -1 :color "red" :style released-button) :weight bold)))) | ||
| 36 | '(mode-line ((t (:box (:line-width -1 :color "red" :style released-button) :family "DejaVu Sans")))) | ||
| 37 | '(mode-line-inactive ((t (:inherit mode-line :foreground "dim gray")))) | ||
| 38 | '(org-agenda-date ((t (:inherit org-agenda-structure)))) | ||
| 39 | '(org-agenda-date-today ((t (:inherit org-agenda-date :underline t)))) | ||
| 40 | '(org-agenda-date-weekend ((t (:inherit org-agenda-date :foreground "dark green")))) | ||
| 41 | '(org-agenda-structure ((t (:foreground "Blue1" :weight bold :height 1.1 :family "DeJaVu Sans")))) | ||
| 42 | '(org-hide ((t (:foreground "white")))) | ||
| 43 | '(org-tag ((t (:weight bold)))) | ||
| 44 | '(outline-1 ((t (:inherit font-lock-function-name-face :weight bold)))) | ||
| 45 | '(outline-2 ((t (:inherit font-lock-variable-name-face :weight bold)))) | ||
| 46 | '(outline-3 ((t (:inherit font-lock-keyword-face :weight bold)))) | ||
| 47 | '(outline-4 ((t (:inherit font-lock-comment-face :weight bold)))) | ||
| 48 | '(outline-5 ((t (:inherit font-lock-type-face :weight bold)))) | ||
| 49 | '(outline-6 ((t (:inherit font-lock-constant-face :weight bold)))) | ||
| 50 | '(outline-7 ((t (:inherit font-lock-builtin-face :weight bold)))) | ||
| 51 | '(outline-8 ((t (:inherit font-lock-string-face :weight bold)))) | ||
| 52 | '(region ((t (:background "lightgoldenrod1")))) | ||
| 53 | '(show-paren-match ((t (:background "LightCyan2")))) | ||
| 54 | '(show-paren-mismatch ((t (:background "deep pink")))) | ||
| 55 | '(window-number-face ((t (:foreground "red" :weight bold))))) | ||
| 56 | |||
| 57 | (provide-theme 'dev-tsdh-light) | ||
| 58 | |||