Skip to content

Instantly share code, notes, and snippets.

@tizoc
Created April 5, 2011 15:05
Show Gist options
  • Save tizoc/903787 to your computer and use it in GitHub Desktop.
Save tizoc/903787 to your computer and use it in GitHub Desktop.
(defun tree-theme ()
(interactive)
(color-theme-install
'(tree-theme
((background-color . "#110C0B")
(foreground-color . "#FFFFFF")
(background-mode . dark)
(border-color . "#323232")
(cursor-color . "#FFFFFF")
(mouse-color . "#323232"))
(mode-line ((t (:foreground "#FFFFFF" :background "#323232"))))
(region ((t (:background "#323232"))))
(font-lock-comment-face ((t (:foreground "#9D9993"))))
(font-lock-constant-face ((t (:foreground "#CFE67F"))))
(font-lock-builtin-face ((t (:foreground "#E4FD8C"))))
(font-lock-function-name-face ((t (:foreground "#E5C069"))))
(font-lock-variable-name-face ((t (:foreground "#C5F4F3"))))
(font-lock-keyword-face ((t (:foreground "#95FF42"))))
(font-lock-string-face ((t (:foreground "#f0f0e0" :background "#211815"))))
(font-lock-doc-string-face ((t (:foreground "#BAF746"))))
(font-lock-type-face ((t (:foreground "#E4FD8C"))))
)))
(tree-theme)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment