tsdh-dark-theme.el 3.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. ;;; tsdh-dark-theme.el --- Tassilo's dark custom theme
  2. ;; Copyright (C) 2011-2012 Free Software Foundation, Inc.
  3. ;; This file is part of GNU Emacs.
  4. ;; GNU Emacs is free software: you can redistribute it and/or modify
  5. ;; it under the terms of the GNU General Public License as published by
  6. ;; the Free Software Foundation, either version 3 of the License, or
  7. ;; (at your option) any later version.
  8. ;; GNU Emacs is distributed in the hope that it will be useful,
  9. ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  11. ;; GNU General Public License for more details.
  12. ;; You should have received a copy of the GNU General Public License
  13. ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
  14. ;;; Code:
  15. (deftheme tsdh-dark
  16. "Minor tweaks to the Emacs dark-background defaults.
  17. Used and created by Tassilo Horn.")
  18. (custom-theme-set-faces
  19. 'tsdh-dark
  20. '(default ((t (:background "gray20" :foreground "white smoke"))))
  21. '(diff-added ((t (:inherit diff-changed :background "dark green"))))
  22. '(diff-changed ((t (:background "midnight blue"))))
  23. '(diff-indicator-added ((t (:inherit diff-indicator-changed))))
  24. '(diff-indicator-changed ((t (:weight bold))))
  25. '(diff-indicator-removed ((t (:inherit diff-indicator-changed))))
  26. '(diff-removed ((t (:inherit diff-changed :background "dark red"))))
  27. '(dired-directory ((t (:inherit font-lock-function-name-face :weight bold))))
  28. '(gnus-button ((t (:inherit button))))
  29. '(gnus-header-name ((t (:box (:line-width 1 :style released-button) :weight bold))))
  30. '(header-line ((t (:inherit mode-line :inverse-video t))))
  31. '(hl-line ((t (:background "grey28"))))
  32. '(message-header-subject ((t (:foreground "SkyBlue"))))
  33. '(minibuffer-prompt ((t (:background "yellow" :foreground "medium blue" :box (:line-width -1 :color "red" :style released-button) :weight bold))))
  34. '(mode-line ((t (:box (:line-width -1 :color "red" :style released-button) :family "DejaVu Sans"))))
  35. '(mode-line-inactive ((t (:inherit mode-line :foreground "dim gray"))))
  36. '(org-agenda-date ((t (:inherit org-agenda-structure))))
  37. '(org-agenda-date-today ((t (:inherit org-agenda-date :underline t))))
  38. '(org-agenda-date-weekend ((t (:inherit org-agenda-date :foreground "dark green"))))
  39. '(org-agenda-structure ((t (:foreground "SkyBlue" :weight bold))))
  40. '(org-hide ((t (:foreground "gray30"))))
  41. '(org-tag ((t (:weight bold))))
  42. '(outline-1 ((t (:inherit font-lock-function-name-face :weight bold))))
  43. '(outline-2 ((t (:inherit font-lock-variable-name-face :weight bold))))
  44. '(outline-3 ((t (:inherit font-lock-keyword-face :weight bold))))
  45. '(outline-4 ((t (:inherit font-lock-comment-face :weight bold))))
  46. '(outline-5 ((t (:inherit font-lock-type-face :weight bold))))
  47. '(outline-6 ((t (:inherit font-lock-constant-face :weight bold))))
  48. '(outline-7 ((t (:inherit font-lock-builtin-face :weight bold))))
  49. '(outline-8 ((t (:inherit font-lock-string-face :weight bold))))
  50. '(rcirc-my-nick ((t (:foreground "LightSkyBlue" :weight bold))))
  51. '(region ((t (:background "SteelBlue4"))))
  52. '(show-paren-match ((t (:background "DarkGreen"))))
  53. '(show-paren-mismatch ((t (:background "deep pink"))))
  54. '(window-number-face ((t (:foreground "red" :weight bold)))))
  55. (provide-theme 'tsdh-dark)
  56. ;; Local Variables:
  57. ;; no-byte-compile: t
  58. ;; End:
  59. ;;; tsdh-dark-theme.el ends here