How can I declare the Color type as const like this:
private const Color MyLovedColor = Color.Blue;
That doesn’t work because the Color.Blue is static not const.
(readonly won’t help me because I need the color for an attribute which “support” constants only
Look at the
KnownColorenumeration. It will likely cater for what you need.