/vendor/color-theme/themes/color-theme-example.el

http://github.com/rejeep/emacs · Emacs Lisp · 22 lines · 21 code · 1 blank · 0 comment · 0 complexity · 041368de04e11499358009d2fdfe9f5d MD5 · raw file

  1. (eval-when-compile
  2. (require 'color-theme))
  3. (defun color-theme-example ()
  4. "Example theme. Carbon copy of color-theme-gnome contributed by Jonadab."
  5. (interactive)
  6. (color-theme-install
  7. '(color-theme-example
  8. ((foreground-color . "wheat")
  9. (background-color . "darkslategrey")
  10. (background-mode . dark))
  11. (default ((t (nil))))
  12. (region ((t (:foreground "cyan" :background "dark cyan"))))
  13. (underline ((t (:foreground "yellow" :underline t))))
  14. (modeline ((t (:foreground "dark cyan" :background "wheat"))))
  15. (modeline-buffer-id ((t (:foreground "dark cyan" :background "wheat"))))
  16. (modeline-mousable ((t (:foreground "dark cyan" :background "wheat"))))
  17. (modeline-mousable-minor-mode ((t (:foreground "dark cyan" :background "wheat"))))
  18. (italic ((t (:foreground "dark red" :italic t))))
  19. (bold-italic ((t (:foreground "dark red" :bold t :italic t))))
  20. (font-lock-comment-face ((t (:foreground "Firebrick"))))
  21. (bold ((t (:bold)))))))