fading blue colours in RGB mode go grey
in
Programming Questions
•
2 years ago
A really basic question:
If I have this in a function
return color(0, 0, 100, VARIABLE_ALPHA); //dark blue
and gradually reduce VARIABLE_ALPHA to zero, the colour of the fill on the screen turns grey, colour (100) not white.
It doesn't do this when I do:
return color(0, 1, 100, VARIABLE_ALPHA); //dark blue
I can see I must be doing something dumb. Any ideas?
Many thanks
1