Let's say that we have an ARGB color
Color argb = Color.FromARGB(127, 69, 12, 255); //Light Urple.When this is painted on top of an existing color, the colors will blend. So blended with white, the resulting color is Color.FromARGB(255, 162, 133, 255);
The solution should work like this
Color blend = Color.White;Color argb = Color.FromARGB(127, 69, 12, 255); //Light Urple.
Color rgb = ToRGB(argb, blend); //Same as Color.FromARGB(255, 162, 133, 255);
What is ToRGB's implementation?
