Skip to content

Instantly share code, notes, and snippets.

@CortYuming
Last active December 10, 2015 17:59
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 CortYuming/4471860 to your computer and use it in GitHub Desktop.
Save CortYuming/4471860 to your computer and use it in GitHub Desktop.
cortyuming20130107 theme for Emacs 24
;;; cortyuming-theme.el --- cortyuming theme for Emacs 24
;; Author: Takashi ITO
;; Version: 0.2.1
;;; Commentary:
;; ;; If save cortyuming.el in ~/.emacs.d/theme/
;;
;; (progn
;; (add-to-list 'custom-theme-load-path "~/.emacs.d/themes")
;; (load-theme 'cortyuming t)
;; )
(deftheme cortyuming
"cortyuming color theme")
(custom-theme-set-faces
'cortyuming
'(cursor ((t (:foreground "#4682B4" :background "#63B8FF"))))
'(default ((t (:foreground "#D3D3D3" :background "#1B1D1E"))))
'(region ((t (:foreground "#D3D3D3" :background "#767676"))))
'(mode-line ((t (:foreground "#F8F8F2" :background "#000000"))))
'(mode-line-buffer-id ((t (:foreground nil :background nil))))
'(mode-line-inactive ((t (:foreground "#111111" :background "#333333"))))
'(highlight ((t (:foreground "#006400" :background "#CAFF70" :bold t))))
'(font-lock-function-name-face ((t (:foreground "#FF78AA"))))
'(font-lock-variable-name-face ((t (:foreground "#9F79EE"))))
'(font-lock-string-face ((t (:foreground "#FFC400"))))
'(font-lock-keyword-face ((t (:foreground "#CD1076"))))
'(font-lock-constant-face ((t (:foreground "#D28000"))))
'(font-lock-comment-face ((t (:foreground "#FF6850"))))
'(font-lock-builtin-face ((t (:foreground "#CD73C9"))))
'(font-lock-doc-string-face ((t (:foreground "#FFC400"))))
'(font-lock-type-face ((t (:foreground "#FF34B3"))))
;; '(comint-highlight-prompt ((t (:foreground "nil"))))
'(show-paren-match-face ((t (:foreground "#D3D3D3" :background "#4682B4"))))
)
;;;###AUTOLOAD
(when load-file-name
(add-to-list 'custom-theme-load-path
(file-name-as-directory (file-name-directory load-file-name))))
(provide-theme 'cortyuming)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment