Skip to content

Instantly share code, notes, and snippets.

@kenkubiak
Created September 3, 2012 16:51
Show Gist options
  • Save kenkubiak/3610754 to your computer and use it in GitHub Desktop.
Save kenkubiak/3610754 to your computer and use it in GitHub Desktop.
A "sublime" theme for emacs
(provide 'color-theme-mnmlst)
(defun color-theme-mnmlst ()
"a 'sublime' theme by mnmslt.me"
(interactive)
(color-theme-install
'(color-theme-tm
((background-color . "#282624")
(background-mode . dark)
(border-color . "#111")
(cursor-color . "yellow")
(foreground-color . "#ddd")
(mouse-color . "sienna1"))
(default ((t (:background "#333" :foreground "#ddd"))))
(blue ((t (:foreground "blue"))))
(bold ((t (:bold t))))
(bold-italic ((t (:bold t :slant italic))))
(border-glyph ((t (nil))))
(buffers-tab ((t (:background "#111" :foreground "#ddd"))))
(font-lock-builtin-face ((t (:foreground "#dd7b3b"))))
(font-lock-comment-face ((t (:foreground "#666" ))))
(font-lock-constant-face ((t (:foreground "#99cf50"))))
(font-lock-doc-string-face ((t (:foreground "#9b859d"))))
(font-lock-function-name-face ((t (:foreground "#e9c062" :bold t))))
(font-lock-keyword-face ((t (:foreground "#cf6a4c" :bold t))))
(font-lock-preprocessor-face ((t (:foreground "#aeaeae"))))
(font-lock-reference-face ((t (:foreground "8b98ab"))))
(font-lock-string-face ((t (:foreground "#65b042"))))
(font-lock-type-face ((t (:foreground "#c5af75"))))
(font-lock-variable-name-face ((t (:foreground "#3387cc"))))
(font-lock-warning-face ((t (:bold t :background "#420e09" :foreground "#eeeeee"))))
(erc-current-nick-face ((t (:foreground "#aeaeae"))))
(erc-default-face ((t (:foreground "#ddd"))))
(erc-keyword-face ((t (:foreground "#cf6a4c"))))
(erc-notice-face ((t (:foreground "#666"))))
(erc-timestamp-face ((t (:foreground "#65b042"))))
(erc-underline-face ((t (:foreground "c5af75"))))
(nxml-attribute-local-name-face ((t (:foreground "#3387cc"))))
(nxml-attribute-colon-face ((t (:foreground "#e28964"))))
(nxml-attribute-prefix-face ((t (:foreground "#cf6a4c"))))
(nxml-attribute-value-face ((t (:foreground "#65b042"))))
(nxml-attribute-value-delimiter-face ((t (:foreground "#99cf50"))))
(nxml-namespace-attribute-prefix-face ((t (:foreground "#9b859d"))))
(nxml-comment-content-face ((t (:foreground "#666"))))
(nxml-comment-delimiter-face ((t (:foreground "#333"))))
(nxml-element-local-name-face ((t (:foreground "#e9c062"))))
(nxml-markup-declaration-delimiter-face ((t (:foreground "#aeaeae"))))
(nxml-namespace-attribute-xmlns-face ((t (:foreground "#8b98ab"))))
(nxml-prolog-keyword-face ((t (:foreground "#c5af75"))))
(nxml-prolog-literal-content-face ((t (:foreground "#dad085"))))
(nxml-tag-delimiter-face ((t (:foreground "#cda869"))))
(nxml-tag-slash-face ((t (:foreground "#cda869"))))
(nxml-text-face ((t (:foreground "#ddd"))))
(mumamo-background-chunk-submode1 ((t (:background "#101820"))))
(whitespace-line ((t nil)))
(whitespace-space ((t (:foreground "#444" :family "Monaco"))))
(whitespace-tab ((t (:foreground "#444" :family "Monaco"))))
(gui-element ((t (:background "#0e2231" :foreground "black"))))
(highlight ((t (:background "#111"))))
(hl-line ((t (:background "#111"))))
(highline-face ((t (:background "#4a410d"))))
(italic ((t (nil))))
(left-margin ((t (nil))))
(mmm-default-submode-face ((t (:background "#111"))))
(mode-line ((t (:background "#e6e5e4" :foreground "black"))))
(primary-selection ((t (:background "#222"))))
(region ((t (:background "#4a410d"))))
(text-cursor ((t (:background "yellow" :foreground "black"))))
(underline ((nil (:underline nil))))
)))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment