Skip to content

Instantly share code, notes, and snippets.

@chrisma
Created December 1, 2014 20:48
Show Gist options
  • Save chrisma/b92732a173b0b5e632d8 to your computer and use it in GitHub Desktop.
Save chrisma/b92732a173b0b5e632d8 to your computer and use it in GitHub Desktop.
RGB to Hex Javascript
function rgbToHex(r, g, b) {
return "#" + ((1 << 24) + (r << 16) + (g << 8) + b).toString(16).slice(1);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment