3
I want to develop a generator of random colors but that are clear, that is, it is possible to read a text with black color on the color generated randomly.
Random colors I can generate using the following code:
RGB(RandomRange(0,255), RandomRange(0,255), RandomRange(0,255));
The question is: How to generate only light colors?