Skip to content

Instantly share code, notes, and snippets.

Created March 13, 2010 02:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anonymous/331058 to your computer and use it in GitHub Desktop.
Save anonymous/331058 to your computer and use it in GitHub Desktop.
(defun color-theme-bliss ()
""
(interactive)
(color-theme-install
'(color-theme-bliss
((foreground-color . "#e0e0fe")
(background-color . "#223355")
(background-mode . dark)
(cursor-color . "#eeffee"))
(bold ((t (:bold t))))
(bold-italic ((t (:italic t :bold t))))
(default ((t (nil))))
(font-lock-builtin-face ((t (:foreground "#f0f0aa"))))
(font-lock-comment-face ((t (:italic t :foreground "#9999cc"))))
(font-lock-delimiter-face ((t (:foreground "#9999cc"))))
(font-lock-constant-face ((t (:bold t :foreground "#ffaa88"))))
(font-lock-doc-string-face ((t (:foreground "#aa99cc"))))
(font-lock-doc-face ((t (:foreground "#aa99cc"))))
(font-lock-reference-face ((t (:foreground "#aa99cc"))))
(font-lock-function-name-face ((t (:foreground "#ffccaa"))))
(font-lock-keyword-face ((t (:foreground "#ccf0ff"))))
(font-lock-preprocessor-face ((t (:foreground "#aaffee"))))
(font-lock-string-face ((t (:foreground "#ffccff")))))))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment