So let us say I have loads of stylesheets on a Django site. CSS and JS files are under static/ in either an app's directory or the global site directory (if it's a common file). I have different color themes going along with different pages, only changing some color values across stylesheets.
Instead of having one whole different stylesheet file for each color theme, and also saving me time should I want to change one single color in the theme that repeats multiple times across the file, I would like to use variables (and for all I know CSS3 variables are both yet unsupported and looked down upon by programmers and designers).
Obviously, being on the static directory, I can't send context variables to these files (they aren't called by a Python view request), so here lies the problem: how can I massively change repeated color values in CSS using Django?
/static, but I wanted to somehow have a reference variable so I can massively set and change CSS color values just like you would change a variable value in a script.