@File: /surebert/colors/toArray.js
@Author: Paul Visco
@Description: Converts hex or rgb formatted color strings to an array
var colorArray = sb.colors.toArray('#ffffff');
var colorArray = sb.colors.toArray('rbg(255,255,255)');
//both return [255,255,255]