Hi all,
I know I can make a color lighter programatically, by augmenting some of the RGB values. But is there a standard way to do so or is it just trial and error? And why is a blue component needed to make orange lighter?
Perhaps C# .NET has some functions to do this? I did not found them.
e.g.
Color.Orange has
R=255
G=165
B=0
a ligther orange would be
R=255
G=180
B=60
Any help or suggestion is as always very much appreciated:)