Skip to content

Instantly share code, notes, and snippets.

@ryonsherman
Created February 13, 2013 19:31
Show Gist options
  • Save ryonsherman/4947392 to your computer and use it in GitHub Desktop.
Save ryonsherman/4947392 to your computer and use it in GitHub Desktop.
Convert RGB values to hex.
var hex = (r | (g << 8) | (b << 16)).toString(16).toUpperCase();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment