03-04-2025, 12:56 AM
Yellow is my favorite color! but on sky blue I can't see it for lack of contrast.
For reading print, contrast is essential.
Yellow is bright R 255 + G 255 so any blue or Sum R + G + B < 255 should be fine.
Oh it turns out high G level not so good either
Still millions of combinations will work with yellow!
For reading print, contrast is essential.
Yellow is bright R 255 + G 255 so any blue or Sum R + G + B < 255 should be fine.
Oh it turns out high G level not so good either
Still millions of combinations will work with yellow!
Code: (Select All)
Screen _NewImage(800, 600, 32)
Do
g = Rnd * 128 ' turns out high greens are bad too
r = Rnd * (255 - g)
b = 255 - r - g
Color _RGB32(255, 255, 0), _RGB32(r, g, b)
Cls
Print " red:"; r
Print "green:"; g
Print " blue:"; b
Print "total:"; r + g + b
_PrintString (400 - 25 * 4, 292), "Can you read this? ...zzz" 'press any key for next
Sleep
Loop
b = b + ...