Code: Select all
(defun random-colour-theme () ;; written 2017-04-02
"Pick a random colour theme."
(interactive)
(setq randomNumber (random 2))
(setq nameOfRandomColorTheme (nth randomNumber '(
"color-theme-xemacs"
"color-theme-xp")))
(nameOfRandomColorTheme)
)
Code: Select all
(nameOfRandomColorTheme)
Code: Select all
(color-theme-xp)
Code: Select all
(color-theme-xemacs)