I am looking fo the following:
Lets say i have a main.scss which contains al my css.
At the top of the file i have the following line:
@import "partials/vars";
This contains all my variables that i'm using in my main.scss (like colors, padding, etc...)
The problem is that my application will be used by multiple clients. Each with their own colour schemes etc.
So what i would like is the easiest method (if there is one) to say:
i have my main file and i compile it to eg:
company1.css company2.css company3.css
Each of them containing the same css code but with their own colour scheme.
if its company1 then it should import 'partials/company1Vars.scss company2 loads company2vars.scss etc
Any help would be appreciated.