Skip to content

Instantly share code, notes, and snippets.

@rawsyntax
Created June 24, 2011 18:40
Show Gist options
  • Save rawsyntax/1045394 to your computer and use it in GitHub Desktop.
Save rawsyntax/1045394 to your computer and use it in GitHub Desktop.
(require 'color-theme)
;;;###autoload
(defun color-theme-merbivore ()
(interactive)
(color-theme-install
'(color-theme-merbivore
((background-color . "black")
(background-mode . dark)
(cursor-color . "deeppink")
(foreground-color . "#E6E1DC"))
(modeline ((t (:background "turquoise" :foreground "black" ))))
(modeline-inactive ((t (:background "gray10" :foreground "white"))))
(default ((t (nil))))
(bold ((t (:bold t))))
(bold-italic ((t (:italic t :bold t))))
(font-lock-builtin-face ((t (:foreground "#E1C582"))))
(font-lock-comment-face ((t (:foreground "#AC4BB8" :italic t))))
(font-lock-constant-face ((t (:foreground "#68C1D8"))))
(font-lock-doc-string-face ((t (:foreground "red")))) ; TODO
(font-lock-function-name-face ((t (:foreground "#FFFFFF"))))
(font-lock-keyword-face ((t (:foreground "#FC4BB8"))))
(font-lock-preprocessor-face ((t (:foreground "#FC803A"))))
(font-lock-reference-face ((t (:foreground "red")))) ; TODO
(font-lock-string-face ((t (:foreground "#8EC65F"))))
(font-lock-type-face ((t (:foreground "white"))))
(font-lock-variable-name-face ((t (:foreground "#E1C582"))))
(font-lock-warning-face ((t (:foreground "red")))) ; TODO
(textile-link-face ((t (:foreground "#8EC65F"))))
(textile-ol-bullet-face ((t (:foreground "#FC803A"))))
(textile-ul-bullet-face ((t (:foreground "#FC803A"))))
(highlight ((t (:background "#2C2C2C"))))
(italic ((t (:italic t))))
(underline ((t (:underline t)))))))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment