converts an RGB color code to the HEX format
rgb | string|array | a string with Red, Green and Blue color values |
string | the Hex color code |
webix.color.rgbToHex("115,116,133"); // -> "#737485"
// or
webix.color.rgbToHex([115,116,133]);
Back to top