diff options
| author | Chong Yidong | 2011-01-08 12:57:55 -0500 |
|---|---|---|
| committer | Chong Yidong | 2011-01-08 12:57:55 -0500 |
| commit | 042d8936e0ed908ab0a0ce0536b151a26e28afa7 (patch) | |
| tree | 78d7ce2d22759584e0abe816d709c2db77b6a4c9 | |
| parent | 0d23ffb5f840ff2d4d7180fa959af067276c3c56 (diff) | |
| download | emacs-042d8936e0ed908ab0a0ce0536b151a26e28afa7.tar.gz emacs-042d8936e0ed908ab0a0ce0536b151a26e28afa7.zip | |
Change dev-tsdh-dark/dev-tsdh-light theme names to tsdh-dark/tsdh-light,
to fit file names.
| -rw-r--r-- | etc/themes/tsdh-dark-theme.el | 9 | ||||
| -rw-r--r-- | etc/themes/tsdh-light-theme.el | 9 |
2 files changed, 8 insertions, 10 deletions
diff --git a/etc/themes/tsdh-dark-theme.el b/etc/themes/tsdh-dark-theme.el index 4e9a3422882..f7761d0489e 100644 --- a/etc/themes/tsdh-dark-theme.el +++ b/etc/themes/tsdh-dark-theme.el | |||
| @@ -1,4 +1,4 @@ | |||
| 1 | ;;; dev-tsdh-dark-theme.el --- Tassilo's dark custom theme | 1 | ;;; tsdh-dark-theme.el --- Tassilo's dark custom theme |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2011 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2011 Free Software Foundation, Inc. |
| 4 | 4 | ||
| @@ -19,11 +19,11 @@ | |||
| 19 | 19 | ||
| 20 | ;;; Code: | 20 | ;;; Code: |
| 21 | 21 | ||
| 22 | (deftheme dev-tsdh-dark | 22 | (deftheme tsdh-dark |
| 23 | "Theme with dark background used and created by Tassilo Horn.") | 23 | "Theme with dark background used and created by Tassilo Horn.") |
| 24 | 24 | ||
| 25 | (custom-theme-set-faces | 25 | (custom-theme-set-faces |
| 26 | 'dev-tsdh-dark | 26 | 'tsdh-dark |
| 27 | '(default ((t (:background "gray20" :foreground "white smoke")))) | 27 | '(default ((t (:background "gray20" :foreground "white smoke")))) |
| 28 | '(diff-added ((t (:inherit diff-changed :background "light green")))) | 28 | '(diff-added ((t (:inherit diff-changed :background "light green")))) |
| 29 | '(diff-changed ((t (:background "light steel blue")))) | 29 | '(diff-changed ((t (:background "light steel blue")))) |
| @@ -55,5 +55,4 @@ | |||
| 55 | '(show-paren-mismatch ((t (:background "deep pink")))) | 55 | '(show-paren-mismatch ((t (:background "deep pink")))) |
| 56 | '(window-number-face ((t (:foreground "red" :weight bold))))) | 56 | '(window-number-face ((t (:foreground "red" :weight bold))))) |
| 57 | 57 | ||
| 58 | (provide-theme 'dev-tsdh-dark) | 58 | (provide-theme 'tsdh-dark) |
| 59 | |||
diff --git a/etc/themes/tsdh-light-theme.el b/etc/themes/tsdh-light-theme.el index b614dcedd89..b66acccaa83 100644 --- a/etc/themes/tsdh-light-theme.el +++ b/etc/themes/tsdh-light-theme.el | |||
| @@ -1,4 +1,4 @@ | |||
| 1 | ;;; dev-tsdh-light-theme.el --- Tassilo's light custom theme | 1 | ;;; tsdh-light-theme.el --- Tassilo's light custom theme |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2011 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2011 Free Software Foundation, Inc. |
| 4 | 4 | ||
| @@ -19,11 +19,11 @@ | |||
| 19 | 19 | ||
| 20 | ;;; Code: | 20 | ;;; Code: |
| 21 | 21 | ||
| 22 | (deftheme dev-tsdh-light | 22 | (deftheme tsdh-light |
| 23 | "Black on white theme used and created by Tassilo Horn.") | 23 | "Black on white theme used and created by Tassilo Horn.") |
| 24 | 24 | ||
| 25 | (custom-theme-set-faces | 25 | (custom-theme-set-faces |
| 26 | 'dev-tsdh-light | 26 | 'tsdh-light |
| 27 | '(default ((t (:background "white" :foreground "black")))) | 27 | '(default ((t (:background "white" :foreground "black")))) |
| 28 | '(diff-added ((t (:inherit diff-changed :background "light green")))) | 28 | '(diff-added ((t (:inherit diff-changed :background "light green")))) |
| 29 | '(diff-changed ((t (:background "light steel blue")))) | 29 | '(diff-changed ((t (:background "light steel blue")))) |
| @@ -54,5 +54,4 @@ | |||
| 54 | '(show-paren-mismatch ((t (:background "deep pink")))) | 54 | '(show-paren-mismatch ((t (:background "deep pink")))) |
| 55 | '(window-number-face ((t (:foreground "red" :weight bold))))) | 55 | '(window-number-face ((t (:foreground "red" :weight bold))))) |
| 56 | 56 | ||
| 57 | (provide-theme 'dev-tsdh-light) | 57 | (provide-theme 'tsdh-light) |
| 58 | |||