Skip to content

Instantly share code, notes, and snippets.

Created March 13, 2010 02:03
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/331038 to your computer and use it in GitHub Desktop.
Save anonymous/331038 to your computer and use it in GitHub Desktop.
(defun color-theme-bliss ()
""
(interactive)
(color-theme-install
'(color-theme-bliss
((foreground-color . "#ccddff")
(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 "#aaffaa"))))
(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 "#ffffff"))))
(font-lock-keyword-face ((t (:foreground "#aaffff"))))
(font-lock-preprocessor-face ((t (:foreground "#aaffee"))))
(font-lock-string-face ((t (:foreground "#ffffff")))))))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment