Skip to content

Instantly share code, notes, and snippets.

@prtksxna
Created July 13, 2009 09:04
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 prtksxna/146007 to your computer and use it in GitHub Desktop.
Save prtksxna/146007 to your computer and use it in GitHub Desktop.
(defun color-theme-almost-monokai ()
(interactive)
(color-theme-install
'(color-theme-almost-monokai
((background-color . "#272821")
(foreground-color . "#F8F8F2")
(cursor-color . "#DAD085"))
(default ((t (nil))))
(modeline ((t (:background "white" :foreground "black"
:box (:line-width 1 :style released-button)))))
(font-lock-builtin-face ((t (:foreground "#A6E22A"))))
(font-lock-comment-face ((t (:italic t :foreground "#75715D"))))
(font-lock-constant-face ((t (:foreground "#A6E22A"))))
(font-lock-doc-string-face ((t (:foreground "#65B042"))))
(font-lock-string-face ((t (:foreground "#DFD874"))))
(font-lock-function-name-face ((t (:foreground "#F1266F"))))
(font-lock-keyword-face ((t (:foreground "#66D9EF"))))
(font-lock-type-face ((t (:underline t :foreground "#89BDFF"))))
(font-lock-variable-name-face ((t (:foreground "#A6E22A"))))
(font-lock-warning-face ((t (:bold t :foreground "#FD5FF1"
:background "#562D56"))))
)
))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment