Change dev-tsdh-dark/dev-tsdh-light theme names to tsdh-dark/tsdh-light,

to fit file names.
This commit is contained in:
Chong Yidong 2011-01-08 12:57:55 -05:00
parent 0d23ffb5f8
commit 042d8936e0
2 changed files with 8 additions and 10 deletions

View file

@ -1,4 +1,4 @@
;;; dev-tsdh-dark-theme.el --- Tassilo's dark custom theme
;;; tsdh-dark-theme.el --- Tassilo's dark custom theme
;; Copyright (C) 2011 Free Software Foundation, Inc.
@ -19,11 +19,11 @@
;;; Code:
(deftheme dev-tsdh-dark
(deftheme tsdh-dark
"Theme with dark background used and created by Tassilo Horn.")
(custom-theme-set-faces
'dev-tsdh-dark
'tsdh-dark
'(default ((t (:background "gray20" :foreground "white smoke"))))
'(diff-added ((t (:inherit diff-changed :background "light green"))))
'(diff-changed ((t (:background "light steel blue"))))
@ -55,5 +55,4 @@
'(show-paren-mismatch ((t (:background "deep pink"))))
'(window-number-face ((t (:foreground "red" :weight bold)))))
(provide-theme 'dev-tsdh-dark)
(provide-theme 'tsdh-dark)

View file

@ -1,4 +1,4 @@
;;; dev-tsdh-light-theme.el --- Tassilo's light custom theme
;;; tsdh-light-theme.el --- Tassilo's light custom theme
;; Copyright (C) 2011 Free Software Foundation, Inc.
@ -19,11 +19,11 @@
;;; Code:
(deftheme dev-tsdh-light
(deftheme tsdh-light
"Black on white theme used and created by Tassilo Horn.")
(custom-theme-set-faces
'dev-tsdh-light
'tsdh-light
'(default ((t (:background "white" :foreground "black"))))
'(diff-added ((t (:inherit diff-changed :background "light green"))))
'(diff-changed ((t (:background "light steel blue"))))
@ -54,5 +54,4 @@
'(show-paren-mismatch ((t (:background "deep pink"))))
'(window-number-face ((t (:foreground "red" :weight bold)))))
(provide-theme 'dev-tsdh-light)
(provide-theme 'tsdh-light)