Skip to content

Instantly share code, notes, and snippets.

@theuves
Created March 5, 2019 16:18
Show Gist options
  • Save theuves/a7b24c6f7c12b3ecf6b375f0fbe21ac9 to your computer and use it in GitHub Desktop.
Save theuves/a7b24c6f7c12b3ecf6b375f0fbe21ac9 to your computer and use it in GitHub Desktop.
Convert hex color to RGB.
const hex2rgb = (colorHex) => colorHex
.match(/(.{2})(.{2})(.{2})/)
.slice(1)
.map((hexVal) => parseInt(hexVal, 16))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment