Made the -dark and -light functions interactive.
parent
d82152aa72
commit
a69b6632f9
|
|
@ -110,5 +110,12 @@ Ported to Emacs by Greg Pfeil, http://ethanschoonover.com/solarized."
|
||||||
(info-xref ((t (:foreground ,blue :underline t))))
|
(info-xref ((t (:foreground ,blue :underline t))))
|
||||||
(info-xref-visited ((t (:inherit info-xref :foreground ,magenta))))))))
|
(info-xref-visited ((t (:inherit info-xref :foreground ,magenta))))))))
|
||||||
|
|
||||||
(defun color-theme-solarized-dark () (color-theme-solarized 'dark))
|
(defun color-theme-solarized-dark ()
|
||||||
(defun color-theme-solarized-light () (color-theme-solarized 'light))
|
(interactive)
|
||||||
|
(color-theme-solarized 'dark))
|
||||||
|
|
||||||
|
(defun color-theme-solarized-light ()
|
||||||
|
(interactive)
|
||||||
|
(color-theme-solarized 'light))
|
||||||
|
|
||||||
|
(provide 'color-theme-solarized)
|
||||||
Loading…
Reference in New Issue