-;;; 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.
;;; 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"))))
'(show-paren-mismatch ((t (:background "deep pink"))))
'(window-number-face ((t (:foreground "red" :weight bold)))))
-(provide-theme 'dev-tsdh-dark)
-
+(provide-theme 'tsdh-dark)
-;;; 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.
;;; 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"))))
'(show-paren-mismatch ((t (:background "deep pink"))))
'(window-number-face ((t (:foreground "red" :weight bold)))))
-(provide-theme 'dev-tsdh-light)
-
+(provide-theme 'tsdh-light)