Created
December 14, 2011 04:29
-
-
Save igaiga/1475262 to your computer and use it in GitHub Desktop.
emacs_color_black.el
This file contains hidden or 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
; color design for background black | |
;(add-to-list 'default-frame-alist '(alpha . (0.95 0.85))) | |
(set-background-color "black") | |
(set-foreground-color "white") | |
(custom-set-faces | |
'(font-lock-comment-face ((((class color) (min-colors 88) (background dark)) (:foreground "wheat1")))) | |
'(font-lock-function-name-face ((((class color) (min-colors 88) (background dark)) (:foreground "HotPink1" :weight bold)))) | |
'(font-lock-keyword-face ((((class color) (min-colors 88) (background dark)) (:foreground "LightSalmon1")))) | |
'(font-lock-string-face ((((class color) (min-colors 88) (background dark)) (:foreground "bisque1")))) | |
'(font-lock-type-face ((((class color) (min-colors 88) (background dark)) (:foreground "DarkSeaGreen1" :weight bold)))) | |
'(font-lock-variable-name-face ((((class color) (min-colors 88) (background dark)) (:foreground "DarkSlateGray1")))) | |
'(highlight ((((class color) (min-colors 88) (background dark)) (:background "aquamarine4")))) | |
'(mcomplete-prefix-method-alternative-part-face ((t (:foreground "LightPink")))) | |
'(mcomplete-prefix-method-fixed-part-face ((t (:foreground "PaleVioletRed1" :weight bold)))) | |
'(minibuffer-prompt ((((background dark)) (:foreground "LightPink")))) | |
'(my-face-elisp-func ((((class color) (min-colors 88) (background dark)) (:foreground "DarkSkyBlue")))) | |
'(my-face-elisp-macro ((((class color) (min-colors 88) (background dark)) (:foreground "aquamarine")))) | |
'(region ((t (:background "aquamarine4")))) | |
'(wb-line-number-face ((t (:foreground "honeydew"))))) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment