(require 'color-theme)
(defun color-theme-subdued ()
"Subdued color theme for Emacs by Jason Blevins.
Based on the Tango color palette."
(interactive)
(color-theme-install
'(color-theme-subdued
((foreground-color . "#d3d7cf")
(background-color . "#000")
(background-mode . dark)
(cursor-color . "#73d216") (mouse-color . "#73d216"))
(default ((t (nil))))
(font-lock-comment-face ((t (:foreground "#61635e")))) (font-lock-comment-delimiter-face ((t (:foreground "#61635e")))) (font-lock-doc-face ((t (:foreground "#77507b")))) (font-lock-doc-string-face ((t (:foreground "#77507b")))) (font-lock-string-face ((t (:foreground "#77507b")))) (font-lock-keyword-face ((t (:foreground "#729fcf")))) (font-lock-builtin-face ((t (:foreground "#855c1b")))) (font-lock-function-name-face ((t (:foreground "#c4a000")))) (font-lock-variable-name-face ((t (nil))))
(font-lock-preprocessor-face ((t (:foreground "#888a85")))) (font-lock-constant-face ((t (:foreground "#4e9a06")))) (font-lock-type-face ((t (:foreground "#ad7fa8")))) (font-lock-warning-face ((t (:bold t :foreground "#cc0000"))))
(isearch ((t (:foreground "#080808" :background "#edd400"))))
(isearch-lazy-highlight-face ((t (:foreground "#080808" :background "#2e3436"))))
(fringe ((t (:background "#0f0f0f"))))
(border ((t (:background "#0f0f0f"))))
(mode-line ((t (:background "#1f1f1f" :foreground "#eeeeec"))))
(mode-line-buffer-id ((t (:background "#1f1f1f" :foreground "#eeeeec"))))
(mode-line-inactive ((t (:background "#1f1f1f" :foreground "#888a85"))))
(minibuffer-prompt ((t (:foreground "#729fcf")))) (region ((t (:background "#2e3436"))))
(show-paren-match-face ((t (:foreground "#2e3436" :background "#73d216"))))
(show-paren-mismatch-face ((t (:foreground "#2e3436" :background "#ef2929"))))
(holiday-face ((t (:foreground "#cc0000"))))
(info-xref ((t (:foreground "#729fcf")))) (info-xref-visited ((t (:foreground "#ad7fa8"))))
(font-latex-sectioning-5-face ((t (:foreground "#c4a000" :bold t)))) (font-latex-bold-face ((t (:foreground "#4e9a06" :bold t)))) (font-latex-italic-face ((t (:foreground "#4e9a06" :italic t)))) (font-latex-math-face ((t (:foreground "#855c1b")))) (font-latex-string-face ((t (:foreground "#77507b")))) (font-latex-warning-face ((t (:foreground "#cc0000")))) (font-latex-slide-title-face ((t (:foreground "#c4a000")))) )))
(provide 'color-theme-subdued)