Hi Teddy,
What is the color scheme we're talking about? - can you provide more information - it may be the build color palettes, the surface color palette etc. As for the conversion to grayscale - you can easily convert a color to grayscale using:
/// <summary>
/// Converts the color to its grayscale equivalent.
/// </summary>
/// <param name="color"></param>
/// <returns></returns>
public static Color ConvertToGrayScale(Color color)
{
int intensity = (color.R + color.G + color.B) / 3;
if (intensity > 255)
intensity = 255;
return Color.FromArgb(color.A, intensity, intensity, intensity);
}
Best Regards,
Nevron Support Team