I am trying to provide multiple themes for web site. I know how to use sass. As far as I understand, the steps are like followings.
- creating sass file.
- sass file is pre-processed.
- the corresponding css file is created
That means that the css file is already properly written (either through sass or direct css) and used in html file. But the way I want to implement is that there is a option box allowing users to use theme. Whatever theme a user clicks, the newly selected theme is immediately applied in html page. How I can achieve this by using sass? Could you give me some concept about it if you have this kind of experience?