Skip to content

Instantly share code, notes, and snippets.

@jcsalterego
Created March 15, 2012 02:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save jcsalterego/2041274 to your computer and use it in GitHub Desktop.
Save jcsalterego/2041274 to your computer and use it in GitHub Desktop.
(global-hl-line-mode 1)
(set-face-background 'hl-line "#262626")
(defun awesome-color-theme ()
(interactive)
(color-theme-install
'(awesome-color-theme
((background-color . "#000000")
(background-mode . light)
(border-color . "#1a1a1a")
(cursor-color . "#4e4e4e")
(foreground-color . "#eeeeec")
(mouse-color . "black"))
(fringe ((t (:background "#1a1a1a"))))
(mode-line ((t (:foreground "#eeeeec" :background "#555753"))))
(region ((t (:background "#000087"))))
(font-lock-builtin-face ((t (:foreground "#729fcf"))))
(font-lock-comment-face ((t (:foreground "#af0000"))))
(font-lock-constant-face ((t (:foreground "#ff00ff"))))
(font-lock-function-name-face ((t (:foreground "#edd400"))))
(font-lock-keyword-face ((t (:foreground "#729fcf"))))
(font-lock-reference-face ((t (:foreground "#af00af"))))
(font-lock-string-face ((t (:foreground "#00af00"))))
(font-lock-type-face ((t (:foreground"#00d700"))))
(font-lock-variable-name-face ((t (:foreground "#ffff00"))))
(minibuffer-prompt ((t (:foreground "#729fcf" :bold t))))
(font-lock-warning-face ((t (:foreground "Red" :bold t))))
)))
(provide 'awesome-color-theme)
(add-to-list 'load-path "~/.emacs.d")
(require 'color-theme)
(color-theme-initialize)
(awesome-color-theme)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment