Skip to content

Instantly share code, notes, and snippets.

@m4r00p
Created August 12, 2013 22:49
Show Gist options
  • Save m4r00p/6216084 to your computer and use it in GitHub Desktop.
Save m4r00p/6216084 to your computer and use it in GitHub Desktop.
Converts hex color value to rgb array.
var hex2rgb = function (hex) {
return hex.match(/(\w{2})/gi).map(function(n){return parseInt(n,16);});
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment