custom-theme-directory
(deftheme twilight
"TextMate Twilight theme for GNU Emacs.")
(custom-theme-set-faces
'twilight
'(default ((t (:background "#141414" :foreground "#F8F8F8"))))
'(cursor ((t (:background "#CDA869"))))
'(blue ((t (:foreground "blue"))))
'(border-glyph ((t (nil))))
'(buffers-tab ((t (:background "#141414" :foreground "#CACACA"))))
'(font-lock-warning-face ((t (:background "#EE799F" :foreground "black"))))
'(font-lock-builtin-face ((t (:foreground "#CACACA"))))
'(font-lock-comment-face ((t (:foreground "#5F5A60"))))
'(font-lock-constant-face ((t (:foreground "#CF6A4C"))))
'(font-lock-doc-string-face ((t (:foreground "DarkOrange"))))
'(font-lock-function-name-face ((t (:foreground "#9B703F"))))
'(font-lock-keyword-face ((t (:foreground "#CDA869"))))
'(font-lock-preprocessor-face ((t (:foreground "#CF6A4C"))))
'(font-lock-reference-face ((t (:foreground "SlateBlue"))))
'(font-lock-string-face ((t (:foreground "#8F9D6A"))))
'(font-lock-type-face ((t (:foreground "#89788a"))))
'(font-lock-variable-name-face ((t (:foreground "#7587A6"))))
'(font-lock-warning-face ((t (:background "#EE799F" :foreground "red"))))
'(font-lock-regexp-grouping-backslash ((t (:foreground "#E9C062"))))
'(font-lock-regexp-grouping-construct ((t (:foreground "red"))))
'(minibuffer-prompt ((t (:foreground "#5F5A60"))))
'(fringe ((t (:background "black" :foreground "grey55"))))
'(linum ((t (:background "#141314" :foreground "#2D2B2E"))))
'(linum-highlight-face ((t (:inherit linum :foreground "yellow"))))
'(hl-line ((t (:background "#212121"))))
'(mode-line ((t (:background "grey75" :foreground "black" :height 0.8))))
'(mode-line-inactive ((t (:background "grey10" :foreground "grey40" :box (:line-width -1 :color "grey20") :height 0.8))))
'(gui-element ((t (:background "#D4D0C8" :foreground "black"))))
'(region ((t (:background "#27292A"))))
'(shadow ((t (:foreground "#4b474c"))))
'(highlight ((t (:background "#111111"))))
'(highline-face ((t (:background "SeaGreen"))))
'(left-margin ((t (nil))))
'(text-cursor ((t (:background "yellow" :foreground "black"))))
'(toolbar ((t (nil))))
'(underline ((nil (:underline nil))))
'(yas/field-highlight-face ((t (:background "#27292A"))))
'(mumamo-background-chunk-submode ((t (:background "#222222"))))
'(zmacs-region ((t (:background "snow" :foreground "blue"))))
'(ido-subdir ((t (:foreground "#CF6A4C"))))
'(ido-first-match ((t (:foreground "#8F9D6A"))))
'(ido-only-match ((t (:foreground "#8F9D6A"))))
'(ruby-string-delimiter-face ((t (:foreground "#5A6340"))))
'(ruby-regexp-delimiter-face ((t (:foreground "orange"))))
'(ruby-heredoc-delimiter-face ((t (:foreground "#9B859D"))))
'(ruby-op-face ((t (:foreground "#CDA869"))))
'(magit-item-highlight ((((class color) (background dark))
(:background "#212121"))))
'(magit-header ((((class color) (background dark))
(:foreground "#9B703F"))))
'(magit-diff-add ((((class color) (background dark))
(:background "#8F9D6A"))))
'(magit-diff-del ((((class color) (background dark))
(:background "#CF6A4C"))))
'(org-hide ((((background dark)) (:foreground "#141414"))))
'(org-clock-overlay ((t (:foreground "#fff"))))
'(outline-4 ((t (:foreground "#8F8A80"))))
'(diff-header ((t (:background "#5F5A60"))))
'(diff-file-header ((t (:inherit diff-header))))
'(diff-removed ((t (:background "#CF6A4C"))))
'(diff-changed ((t (:background "#CDA869"))))
'(diff-added ((t (:background "#8F9D6A"))))
'(term-color-black ((t (:foreground "#313131" :background "#141414"))))
'(term-color-red ((t (:foreground "#CF6A4C" :background "#a3472c"))))
'(term-color-green ((t (:foreground "#8F9D6A" :background "#646d4a"))))
'(term-color-yellow ((t (:foreground "#efa510" :background "#CDA869"))))
'(term-color-blue ((t (:foreground "#7587A6" :background "#5d6c84"))))
'(term-color-magenta ((t (:foreground "#EE799F" :background "#EF2929"))))
'(term-color-cyan ((t (:foreground "#5d8084" :background "#41595c"))))
'(term-color-white ((t (:foreground "#CACACA" :background "#5F5A60"))))
'(term-default-fg-color ((t (:inherit term-color-white))))
'(term-default-bg-color ((t (:inherit term-color-black))))
)
(provide-theme 'twilight)
autoload(when load-file-name
(add-to-list 'custom-theme-load-path
(file-name-as-directory (file-name-directory load-file-name))))