Syntax
- string colorRGBToHex(red, green, blue)
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.
Returns
Returns hexadecimal color string (format: "#rrggbb") for RGB color in [0,1].
Description
The colorRGBToHex converts an RGB color to a hexadecimal color string. It clamps red, green, and blue to the range [0,1].
Related
Examples
example.1
colorRGBToHex(0,0.5,1)
# result = "#0080FF"