There is a code in which the color of the block is randomly generated.
function random_html_color() { return sprintf('#%02X%02X%02X', rand(230, 255), rand(230, 255), rand(230, 255)); } Will it be wrong to say that RGB color is generated in the range from 230 to 255? After all, if it does, then there will be no color blocks, but only shades of gray.
How to correctly say what is generated, as it were, every sub-color in this range, for example, only R or G (in context, everything about 3 is needed)?