Advertisement
Guest User

Untitled

a guest
Mar 6th, 2011
934
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lisp 3.29 KB | None | 0 0
  1. (defun color-theme-tm ()
  2.   "Color theme by dngpng, created 2007-09-11."
  3.   (interactive)
  4.   (color-theme-install
  5.    '(color-theme-tm
  6.      ((background-color . "#111")
  7.       (background-mode . dark)
  8.       (border-color . "#111")
  9.       (cursor-color . "yellow")
  10.       (foreground-color . "#ddd")
  11.       (mouse-color . "sienna1"))
  12.      (default ((t (:background "#111" :foreground "#ddd"))))
  13.      (blue ((t (:foreground "blue"))))
  14.      (bold ((t (:bold t))))
  15.      (bold-italic ((t (:bold t :slant italic))))
  16.      (border-glyph ((t (nil))))
  17.      (buffers-tab ((t (:background "#111" :foreground "#ddd"))))
  18.      (font-lock-builtin-face ((t (:foreground "#dd7b3b"))))
  19.      (font-lock-comment-face ((t (:foreground "#666" ))))
  20.      (font-lock-constant-face ((t (:foreground "#99cf50"))))
  21.      (font-lock-doc-string-face ((t (:foreground "#9b859d"))))
  22.      (font-lock-function-name-face ((t (:foreground "#e9c062" :bold t))))
  23.      (font-lock-keyword-face ((t (:foreground "#cf6a4c" :bold t))))
  24.      (font-lock-preprocessor-face ((t (:foreground "#aeaeae"))))
  25.      (font-lock-reference-face ((t (:foreground "8b98ab"))))
  26.      (font-lock-string-face ((t (:foreground "#65b042"))))
  27.      (font-lock-type-face ((t (:foreground "#c5af75"))))
  28.      (font-lock-variable-name-face ((t (:foreground "#3387cc"))))
  29.      (font-lock-warning-face ((t (:bold t :background "#420e09" :foreground "#eeeeee"))))
  30.      (erc-current-nick-face ((t (:foreground "#aeaeae"))))
  31.      (erc-default-face ((t (:foreground "#ddd"))))
  32.      (erc-keyword-face ((t (:foreground "#cf6a4c"))))
  33.      (erc-notice-face ((t (:foreground "#666"))))
  34.      (erc-timestamp-face ((t (:foreground "#65b042"))))
  35.      (erc-underline-face ((t (:foreground "c5af75"))))
  36.      (nxml-attribute-local-name-face ((t (:foreground "#3387cc"))))
  37.      (nxml-attribute-colon-face ((t (:foreground "#e28964"))))
  38.      (nxml-attribute-prefix-face ((t (:foreground "#cf6a4c"))))
  39.      (nxml-attribute-value-face ((t (:foreground "#65b042"))))
  40.      (nxml-attribute-value-delimiter-face ((t (:foreground "#99cf50"))))
  41.      (nxml-namespace-attribute-prefix-face ((t (:foreground "#9b859d"))))
  42.      (nxml-comment-content-face ((t (:foreground "#666"))))
  43.      (nxml-comment-delimiter-face ((t (:foreground "#333"))))
  44.      (nxml-element-local-name-face ((t (:foreground "#e9c062"))))
  45.      (nxml-markup-declaration-delimiter-face ((t (:foreground "#aeaeae"))))
  46.      (nxml-namespace-attribute-xmlns-face ((t (:foreground "#8b98ab"))))
  47.      (nxml-prolog-keyword-face ((t (:foreground "#c5af75"))))
  48.      (nxml-prolog-literal-content-face ((t (:foreground "#dad085"))))
  49.      (nxml-tag-delimiter-face ((t (:foreground "#cda869"))))
  50.      (nxml-tag-slash-face ((t (:foreground "#cda869"))))
  51.      (nxml-text-face ((t (:foreground "#ddd"))))
  52.      (gui-element ((t (:background "#0e2231" :foreground "black"))))
  53.      (highlight ((t (:bold t :slant italic))))
  54.      (highline-face ((t (:background "#4a410d"))))
  55.      (italic ((t (nil))))
  56.      (left-margin ((t (nil))))
  57.      (mmm-default-submode-face ((t (:background "#111"))))
  58.      (mode-line ((t (:background "#e6e5e4" :foreground "black"))))
  59.      (primary-selection ((t (:background "#222"))))
  60.      (region ((t (:background "#4a410d"))))
  61.      (text-cursor ((t (:background "yellow" :foreground "black"))))
  62.      (underline ((nil (:underline nil)))))))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement