I'd like to compare colors but haven't got a clue where to start. I tried
private static int CompareColors(Color colorA, Color colorB)
{
long resultA = colorA.A + colorA.B + colorA.G + colorA.R;
long resultB = colorB.A + colorB.B + colorB.G + colorB.R;
return (int)Math.Max(-1, Math.Min(1, resultA - resultB));
}
but all that does is compare the total 'color value' without taking into account differences in separate channels and produces a kind of dark-to-light list. so then I tried
private static int CompareColors(Color colorA, Color colorB)
{
string resultA = colorA.Tostring();
string resultB = colorB.Tostring();
return string.Compare(resultA, resultB);
}
which seems to produce slightly better results but still interspersed with an oddly out-of-place bright color from time to time (particularly in the 'softer'/'lower value' colors region). (how) can I improve on that last result?
EDIT: thanks for all the comments, I now understand this question may need some more background for you to be able to produce meaningful responses, so I'll elaborate and hope you're still with me on answering this. this is my goal: imagine a color palette like this one, I'd like to represent this in a sorted list. of course the color palette is 2D and my list is 1D but I'm only working with the built-in colors that I lookup like this
List<Color> colors = new List<Color>();
Type colorType = typeof(Colors);
foreach (PropertyInfo propertyInfo in colorType.GetProperties(BindingFlags.Public | BindingFlags.Static))
{
if (propertyInfo.PropertyType == typeof(Color))
{
colors.Add((Color)propertyInfo.GetValue(null, null));
}
}
colors.Sort(new Comparison<Color>((colorA, colorB) => CompareColors(colorA, colorB)));
and with those colors I'm trying to produce a list where the colors are grouped by a kind of color equality like on the color palette. sorting by brightness is second but still important for smooth transitions between color groups.
for clarity's sake: with 'color equality' and 'color groups' I'm referring to the visually coherent color regions in the sample color palette. with 'smooth transitions' I'm referring to the regions in the color palette in between the visually coherent color regions. I'm not working with a vast variety of colors like the sample color palette features, I'm only working with the built-in colors (which appear to feature a good amount of cream-like colors).