iprateekk
iprateekk

Reputation: 616

Why is my spacemacs stuck on a white colour?

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.

enter image description here

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

Answers (1)

iprateekk
iprateekk

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

Related Questions