converts a hexadecimal color code or RGB code string to the RGB array
rgb | string | a hexadecimal color code or RGB code string |
array | the array with RED GREEN BLUE values |
webix.color.toRgb("rgb(255,0,255)");// -> [255, 0, 255]
webix.color.toRgb("FF00FF");// -> [255, 0, 255]