(deftheme subdued
"Subdued color theme for Emacs by Jason Blevins.
Based on the Tango color palette.")
(custom-theme-set-faces
'subdued
'(default ((t (:background "#000" :foreground "#d3d7cf"))))
'(mouse ((t (:foregound "black"))))
'(cursor ((t (:foregound "#73d216")))) '(border ((t (:foregound "#73d216"))))
'(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"))))
'(highlight ((t (:background "#1f1f1f" :foreground nil))))
'(highlight-current-line-face ((t (:background "#1f1f1f" :foreground nil))))
'(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"))))
'(post-emoticon-face ((t (:background "#edd400" :foreground "#000000")))) '(post-header-value-face ((t (:foreground "#4e9a06")))) '(post-header-keyword-face ((t (:foreground "#4e9a06" :bold t)))) '(post-signature-text-face ((t (:foreground "#cc0000")))) '(post-quoted-text-face ((t (:foreground "#855c1b" :slant normal)))) '(post-double-quoted-text-face ((t (:foreground "#77507b" :slant normal)))) '(post-multiply-quoted-text-face ((t (:foreground "#61635e" :slant normal)))) '(post-email-address-text-face ((t (:foreground "#729fcf" :bold t)))) '(post-url-face ((t (:foreground "#729fcf" :bold t)))) )
autoload(when load-file-name
(add-to-list 'custom-theme-load-path
(file-name-as-directory (file-name-directory load-file-name))))
(provide-theme 'subdued)