Skip to content

Instantly share code, notes, and snippets.

@Indamix
Created March 1, 2012 14:21
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 Indamix/1950114 to your computer and use it in GitHub Desktop.
Save Indamix/1950114 to your computer and use it in GitHub Desktop.
rgb2hex
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