Skip to content

Instantly share code, notes, and snippets.

@vanrez-nez
Last active August 29, 2015 14:17
Show Gist options
  • Save vanrez-nez/cc36f69b45ecc7619f62 to your computer and use it in GitHub Desktop.
Save vanrez-nez/cc36f69b45ecc7619f62 to your computer and use it in GitHub Desktop.
Conversion from RGB values to Hex notation
function rgb2Hex(r, g, b) {
return '#' + ((1 << 24) + (r << 16) + (g << 8) + b).toString(16).substr(1);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment