Guest User

Untitled

a guest
Feb 26th, 2012
44
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.03 KB | None | 0 0
  1.  
  2. ;; -*- emacs-lisp -*-
  3. ;;
  4. ;;
  5. ;; name: color-theme-wombat
  6. ;; date: Wed Oct 20 2010 18:58:16 GMT+0200 (CET)
  7. ;;
  8. ;;
  9. ;; To use this theme save this code into a
  10. ;; file named color-theme-wombat.el and place it
  11. ;; in a directory in your load-path
  12. ;;
  13. ;; (require 'color-theme-wombat)
  14. ;; (color-theme-wombat)
  15. ;;
  16.  
  17.  
  18. (require 'color-theme)
  19.  
  20. (defun color-theme-wombat ()
  21. "Generated with http://color-theme-select.heroku.com/ on Wed Oct 20 2010 18:58:16 GMT+0200 (CET)
  22. The wombat color theme for Emacs."
  23. (interactive)
  24. (color-theme-install
  25. '(color-theme-wombat
  26. (
  27. (background-color . "#242424")
  28. (background-mode . "dark")
  29. (border-color . "#242424")
  30. (cursor-color . "#64a8d8")
  31. (foreground-color . "#f6f3e8")
  32. (mouse-color . "black")
  33. )
  34. (
  35. )
  36. (font-lock-builtin-face ((t (:foreground "#8ac6f2"))))
  37. (font-lock-comment-delimiter-face ((t (:italic t :slant italic :foreground "#99968b"))))
  38. (font-lock-comment-face ((t (:italic t :slant italic :foreground "#99968b"))))
  39. (font-lock-constant-face ((t (:foreground "#e5786d"))))
  40. (font-lock-doc-face ((t (:foreground "#99968b"))))
  41. (font-lock-function-name-face ((t (:foreground "#ad7fa8" :weight bold :slant italic))))
  42. (font-lock-keyword-face ((t (:foreground "#8ac6f2"))))
  43. (font-lock-negation-char-face ((t (:foreground "#95e454"))))
  44. (font-lock-preprocessor-face ((t (:foreground "#e5786d"))))
  45. (font-lock-regexp-grouping-backslash ((t (:bold t :weight bold))))
  46. (font-lock-regexp-grouping-construct ((t (:bold t))))
  47. (font-lock-string-face ((t (:italic t :foreground "#95e454" :slant italic))))
  48. (font-lock-type-face ((t (:foreground "#cae682"))))
  49. (font-lock-variable-name-face ((t (:foreground "#8ac6f2"))))
  50. (font-lock-warning-face ((t (:bold t :foreground "#95e454" :weight bold))))
  51. (minibuffer-prompt ((t (:foreground "#95e454" :weight bold))))
  52. (mode-line ((t (:background "#444444" :foreground "#f6f3e8"))))
  53. (mode-line-emphasis ((t (:bold t))))
  54. (mode-line-highlight ((t (:background "#e65c00"))))
  55. (mode-line-inactive ((t (:background "#242424" :box ( :line-width 1 :color "#424242" :style nil )))))
  56. (region ((t (:foreground "#f6f3e8" :background "#444444"))))
  57. (lazy-highlight ((t (:italic t :background "yellow" :foreground "black" :slant italic))))
  58. (highlight ((t (:background "#444444"))))
  59. (highlight-changes-delete-face ((t (:foreground "red" :underline t))))
  60. (highlight-changes-face ((t (:foreground "red"))))
  61. (secondary-selection ((t (:background "#64a8d8" :foreground "black" :weight bold))))
  62. (hl-line ((t (:background "#444444"))))
  63. (org-date ((t (:foreground "Cyan" :underline t))))
  64. (org-agenda-date ((t (:foreground "#8ac6f2"))))
  65. (org-agenda-date-weekend ((t (:bold t :foreground "#e65c00" :weight bold))))
  66. (org-hide ((t (:foreground "#242424"))))
  67. (org-todo ((t (:foreground "#F6B3DF" :weight bold))))
  68. (org-done ((t (:foreground "#4BC98A" :weight bold))))
  69. (org-level-1 ((t (:foreground "#8ac6f2" :weight bold))))
  70. (org-level-2 ((t (:foreground "#ee9a49"))))
  71. (org-level-3 ((t (:foreground "#ff83fa"))))
  72. (org-level-4 ((t (:foreground "#ffa500"))))
  73. (org-level-5 ((t (:foreground "#ff4040"))))
  74. (isearch ((t (:background "#f57900" :foreground "#2e3436"))))
  75. (isearch-lazy-highlight-face ((t (:foreground "#2e3436" :background "#e9b96e"))))
  76. (paren-face-match ((t (:inherit show-paren-match-face))))
  77. (paren-face-match-light ((t (:inherit show-paren-match-face))))
  78. (paren-face-mismatch ((t (:inherit show-paren-mismatch-face))))
  79. (show-paren-match-face ((t (:background "#e65c00" :foreground "white" :weight bold))))
  80. (show-paren-mismatch-face ((t (:background "#ad7fa8" :foreground "#2e3436"))))
  81. (persp-selected-face ((t (:foreground "#2e3436"))))
  82. (info-xref ((t (:foreground "#8ac6f2"))))
  83. (info-xref-visited ((t (:foreground "#ad7fa8"))))
  84. )
  85. )
  86. )
  87.  
  88. (provide 'color-theme-wombat)
Add Comment
Please, Sign In to add comment