Skip to content

Instantly share code, notes, and snippets.

@walkermatt
Created July 26, 2015 12:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save walkermatt/7594cf5e82a70f2c3fd7 to your computer and use it in GitHub Desktop.
Save walkermatt/7594cf5e82a70f2c3fd7 to your computer and use it in GitHub Desktop.
Hexidecimal colour to RGB
function hexToRgb(hex) {
return 'rgb(' + hex.slice(1).match(/../g).map(c => parseInt(c, 16)) +')'
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment