Skip to content

Instantly share code, notes, and snippets.

@eioo
Created June 5, 2018 12:37
Show Gist options
  • Select an option

  • Save eioo/8e6350024dfa420ff321347036519765 to your computer and use it in GitHub Desktop.

Select an option

Save eioo/8e6350024dfa420ff321347036519765 to your computer and use it in GitHub Desktop.
function hexRgb(hexColor) {
const color = hexColor.startsWith('#') ? hexColor.substr(1) : hexColor;
if (color.length === 3) {
return color.match(/.{1,1}/g).map(hex => parseInt(hex + hex, 16));
} else if (color.length === 6) {
return color.match(/.{1,2}/g).map(hex => parseInt(hex, 16));
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment