Reputation: 616
I have just recently installed spacemacs and activated a few layers. I installed themes-megapack and after emacs restart, the screen is now stuck on a white theme.
I have tried to change the themes the normal way as well with no success. I have tried to reinstall spacemacs altogether but its the same.
My .spacemacs file is here
Upvotes: 1
Views: 353
Reputation: 616
I figured it out! At the bottom of my .spacemacs file custom-set-faces block of code that was overwriting my themes. I changed it to the following and it worked:
(custom-set-faces
'(default ((t (:background nil)))))
)
Upvotes: 2