Watson1978
8/10/2011 - 12:31 PM

Emacs : color theme

Emacs : color theme


(defun color-theme-watson ()
  (interactive)
  (color-theme-install
   '(color-theme-watson
     ((background-color . "#2B2B2B")
      (foreground-color . "#FFFFFF")
      (background-mode . dark)
      (border-color . "#2B2B2B")
      (cursor-color . "#FFFFFF")
      (mouse-color . "#323232"))
     (mode-line ((t (:foreground "#FFFFFF" :background "#3F3B3B"))))
     (trailing-whitespace ((t (:underline t :foreground "Pink"))))
     (region ((t (:background "#00B3FF"))))

     (font-lock-comment-face ((t (:foreground "#7F9F7F"))))
     (font-lock-constant-face ((t (:foreground "#9DFFFF"))))
     (font-lock-builtin-face ((t (:foreground "#C6B032"))))
     (font-lock-function-name-face ((t (:foreground "#D59C77"))))
     (font-lock-variable-name-face ((t (:foreground "#98EAC7"))))
     (font-lock-keyword-face ((t (:foreground "#AE5825"))))
     (font-lock-doc-string-face ((t (:foreground "#B8005C"))))
     (font-lock-type-face ((t (:foreground "#E1932C"))))
     (fringe ((t (:background "#2B2B2B"))))
     )))

(provide 'color-theme-watson)