K
K Viltersten
I've used the Colors class to access a bunch
of colors for my applications. Now, i'd like
to create a family for of each such color as
follows.
public Color Normal
{get{return Colors.Orange;}}
public Color Washed
{get{return Colors.Yellow;}}
public Color Satured
{get{return Colors.Red;}}
However, i don't really feel like setting up
a static map for each (most) of the colors.
I'd strongly prefer a facility that would
simply give me a washed and a saturated
version of whatever i put in.
Hints other than "write it yourself, you
lazy bum!", may i hope?
of colors for my applications. Now, i'd like
to create a family for of each such color as
follows.
public Color Normal
{get{return Colors.Orange;}}
public Color Washed
{get{return Colors.Yellow;}}
public Color Satured
{get{return Colors.Red;}}
However, i don't really feel like setting up
a static map for each (most) of the colors.
I'd strongly prefer a facility that would
simply give me a washed and a saturated
version of whatever i put in.
Hints other than "write it yourself, you
lazy bum!", may i hope?