I want to define a few colours in one location and use functions to generate tints of these colors and render the generated colors in the CSS files.
I am moving from working on Ruby on Rails to ASP.NET. On my previous RoR project I had a 5-color color scheme set as Ruby variables of RGB arrays. I then used functions in the .css.erb file to generate a range of tints and shades of the color scheme colors throughout the generated .css stylesheet.
What's the cleanest way to do this in ASP.NET MVC 5?