mirror of
https://github.com/altercation/solarized
synced 2024-11-22 03:33:03 +00:00
Made the -dark and -light functions interactive.
This commit is contained in:
parent
d82152aa72
commit
a69b6632f9
1 changed files with 9 additions and 2 deletions
|
@ -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)
|
Loading…
Reference in a new issue