Skip to content

Instantly share code, notes, and snippets.

@bkerley
Forked from 53cr/sunburst.el
Created February 10, 2009 17:02
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save bkerley/61465 to your computer and use it in GitHub Desktop.
Save bkerley/61465 to your computer and use it in GitHub Desktop.
(defun color-theme-sunburst ()
(interactive)
(color-theme-install
'(color-theme-sunburst
((background-color . "#000000")
(foreground-color . "#FFFFFF")
(cursor-color . "#DAD085"))
(default ((t (nil))))
(modeline ((t (:background "DarkRed" :foreground "white"
:box (:line-width 1 :style released-button)))))
(font-lock-builtin-face ((t (:foreground "#3E87E3"))))
(font-lock-comment-face ((t (:italic t :foreground "#AEAEAE"))))
(font-lock-constant-face ((t (:foreground "#3387CC"))))
(font-lock-doc-string-face ((t (:foreground "#65B042"))))
(font-lock-string-face ((t (:foreground "#99CF50"))))
(font-lock-function-name-face ((t (:foreground "#89BDFF"))))
(font-lock-keyword-face ((t (:foreground "#E28964"))))
(font-lock-type-face ((t (:underline t :foreground "#89BDFF"))))
(font-lock-variable-name-face ((t (:foreground "#3E87E3"))))
(font-lock-warning-face ((t (:bold t :foreground "#FD5FF1"
:background "#562D56"))))
(py-decorators-face ((t (:foreground "#3387CC"))))
(py-builtins-face ((t (:foreground "#99CF50"))))
(py-pseudo-keyword-face ((t (:foreground "#3E87E3"))))
)
))
(defalias 'sunburst #'color-theme-sunburst)
(provide 'sunburst)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment