Syntax
- string colorRGBOToHex(red, green, blue, opacity)
Parameters
- red—float (range[0, 1])Red value of RGB color.
- green—float (range[0, 1])Green value of RGB color.
- blue—float (range[0, 1])Blue value of RGB color.
- opacity—float (range[0, 1])Opacity value.
Returns
Returns hexadecimal color string (format: "#rrggbb") for RGB color in [0,1] with opacity in [0,1].
Description
The colorRGBOToHex converts an RGB color with opacity to a hexadecimal color string. It clamps red, green, blue, opacity to the range [0,1].
Related
Examples
colorRGBOToHex(0,0.5,1,0.5)
# result = "#0080FF80"