Converts a color system into another.
Color.hex('#ff0456', 'rgb');// rgb(255, 4, 86) Color.hex('#ff0456', 'hsl');// hsl(340, 100%, 51%) Color.rgb('255, 36, 28', 'hex');// #ff241c Color.rgb('255, 36, 28', 'hsl');// hsl(2, 100%, 55%) Color.hsl('315, 50, 62', 'hex');// #cf6eb6 Color.hsl('315, 50, 62', 'rgb');// rgb(207, 110, 182)