I\'ve been using the default theme with about 10 faces changed via custom-set-faces for a while now. But from time to time I want to try out a couple of the custom
custom-set-faces
I have something like this in my emacs config to change themes:
(defun zenburn () "Activate zenburn theme." (interactive) (setq dark-theme t) ;; disable other themes before setting this theme (disable-theme 'soft-stone) (disable-theme 'leuven) (load-theme 'zenburn t))