Created
June 10, 2012 22:02
-
-
Save k-bx/2907481 to your computer and use it in GitHub Desktop.
sublime text 2 like theme for emacs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(defun sublime-text-2 () | |
(interactive) | |
(color-theme-install | |
'(sublime-text-2 | |
((background-color . "#171717") | |
(background-mode . light) | |
(border-color . "#1a1a1a") | |
(cursor-color . "#fce94f") | |
(foreground-color . "#cfbfad") | |
(mouse-color . "black")) | |
(fringe ((t (:background "#1a1a1a")))) | |
(mode-line ((t (:foreground "#eeeeec" :background "#555753")))) | |
(region ((t (:foreground "#404040" :background "#CC9900")))) | |
(font-lock-builtin-face ((t (:foreground "#52e3f6")))) | |
(font-lock-comment-face ((t (:foreground "#ffffff")))) | |
(font-lock-function-name-face ((t (:foreground "#edd400")))) | |
(font-lock-keyword-face ((t (:foreground "#ff007f")))) | |
(font-lock-string-face ((t (:foreground "#ece47e")))) | |
(font-lock-type-face ((t (:foreground"#8ae234")))) | |
(font-lock-variable-name-face ((t (:foreground "#8ae234")))) | |
(minibuffer-prompt ((t (:foreground "#729fcf" :bold t)))) | |
(font-lock-warning-face ((t (:foreground "Red" :bold t)))) | |
))) | |
(provide 'sublime-text-2) |
Looks great! Thanks
Any screenshots?
how to use it?
Sexxy.....!!!
undefined custom theme sublime-text-2 !!
symbol's function definition is void: color-theme-install
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Nice!