Utility to format a RGBA set of values into a string.
https://en.wikipedia.org/wiki/RGB_color_model#Geometric_representation
rgba(255, 150, 65, 0.3); // -> 'rgba(255, 150, 65, 0.3)' Copy
rgba(255, 150, 65, 0.3); // -> 'rgba(255, 150, 65, 0.3)'
The red value, must be a number between 0 and 255 inclusive.
The green value, must be a number between 0 and 255 inclusive.
The blue value, must be a number between 0 and 255 inclusive.
The alpha value, must be a number between 0 and 1 inclusive.
Utility to format a RGBA set of values into a string.
See
https://en.wikipedia.org/wiki/RGB_color_model#Geometric_representation
Example