Has anyone written a nice extension method 'library' for System.Drawing.Color.
Would be nice to say :
Color.Red.AdjustBrightness(.5)
Color.Red.AdjustAlpha(.5)
Color.Red.ToHSV()
or something like that.
Alpha is easy, but others become time consuming because you have to go off and fine all the right mathematical equations for HSV and HSB and all that fun stuff.
Hoping someone else had done the work already :-) Microsoft doesn't seem to want to do it for me.