Generates a random hex color code with a specified brightness.
This function creates a random color by generating random values for the red, green, and blue
color channels. The brightness parameter ensures the generated color is not too dark by
limiting the possible range for each channel.
Returns
A random hex color code, in the form of #RRGGBB.
Throws
Throws an error if the brightness is not between 0 and 255.
Parameters
brightness: number
The minimum brightness of the generated color. Should be between 0 and 255.
Generates a random hex color code with a specified brightness.
This function creates a random color by generating random values for the red, green, and blue color channels. The brightness parameter ensures the generated color is not too dark by limiting the possible range for each channel.
Returns
A random hex color code, in the form of
#RRGGBB
.Throws
Throws an error if the brightness is not between 0 and 255.