Made the -dark and -light functions interactive.

This commit is contained in:
Greg Pfeil 2011-04-02 09:03:09 +02:00
parent d82152aa72
commit a69b6632f9
1 changed files with 9 additions and 2 deletions

View File

@ -110,5 +110,12 @@ Ported to Emacs by Greg Pfeil, http://ethanschoonover.com/solarized."
(info-xref ((t (:foreground ,blue :underline t))))
(info-xref-visited ((t (:inherit info-xref :foreground ,magenta))))))))
(defun color-theme-solarized-dark () (color-theme-solarized 'dark))
(defun color-theme-solarized-light () (color-theme-solarized 'light))
(defun color-theme-solarized-dark ()
(interactive)
(color-theme-solarized 'dark))
(defun color-theme-solarized-light ()
(interactive)
(color-theme-solarized 'light))
(provide 'color-theme-solarized)