Created
June 4, 2013 23:18
-
-
Save jinie/5710444 to your computer and use it in GitHub Desktop.
Mustang color theme for Emacs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
;;; | |
;;; Mustang emacs theme by Jimmy Selgen Nielsen | |
;;; | |
;;; Inspired by: | |
;;; Mustang color theme for Vim by Henrique C. Alves: | |
;;; http://hcalves.deviantart.com/art/Mustang-Vim-Colorscheme-98974484 | |
;;; | |
(defun color-theme-mustang () | |
(interactive) | |
(color-theme-install | |
'(mustang ((background-color . "#222222") | |
(background-mode . dark) | |
(cursor-color . "#bdbdbd") | |
(mouse-color . "sienna1") | |
(foreground-color . "#bdbdbd")) | |
(default ((t (:background "#202020")))) | |
(mode-line ((t (:foreground "#939395" :background "#444444")))) | |
(linum ((t (:foreground "#717c7e")))) | |
(hl-line ((t (:background "#2d2d2d")))) | |
(fringe ((t (:background "#000000")))) | |
(border ((t (:background "#000000")))) | |
(left-margin ((t (:background "#000000")))) | |
(region ((t (:background "#758096" :foreground "#e6e6e6")))) | |
(ido-subdir ((t (:foreground "#8F9D6A")))) | |
(ido-first-match ((t (:foreground "#8F9D6A")))) | |
(ido-only-match ((t (:foreground "#8F9D6A")))) | |
(font-lock-builtin-face ((t (:foreground "#7e8aa2")))) | |
(font-lock-comment-face ((t (:foreground "#808080")))) | |
(font-lock-function-name-face ((t (:foreground "#ffffff" :bold t)))) | |
(font-lock-keyword-face ((t (:foreground "#ff9800")))) | |
(font-lock-string-face ((t (:foreground "#b1d631")))) | |
(font-lock-type-face ((t (:foreground"#7e8aa2")))) | |
(font-lock-variable-name-face ((t (:foreground "#b1d631")))) | |
(minibuffer-prompt ((t (:foreground "#b1d631" :bold t :background "#202020")))) | |
(font-lock-warning-face ((t (:background "#b1d631" :foreground "#ffffff" :bold t)))) | |
(show-paren-match ((t (:foreground "#000000" :background "#b1d631"))))))) | |
(add-to-list 'color-themes '(color-theme-mustang | |
"Mustang" | |
"[email protected]")) | |
(provide 'color-theme-mustang) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment