I have a set of *.scss files that are compiled to my main.min.css file. There is variable with color (lets say $customColor) that is used in many very places. I have my users in database and one field is UserColor with hex rgb code.
Now after login user has to see website with color with $customColor setted as RGB. I don't know how do it in my asp.net application without change css in top of view.
There will be thousands of user so I cant have many of css for every user with one difference - the $customColor.
Is it possible to do in client side? It would help avoid conflicts on server when many of people will log to service. Then I would like to for example in all main.min.css file replace all places where is setted for example "#e45f2" to custom color. Then I would return color to view as ViewBag and use in Jquery function. Is it possible?