Skip to content

Instantly share code, notes, and snippets.

@linuxenko
Created March 13, 2016 13:55
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 linuxenko/fa12a4af2223adddb6e4 to your computer and use it in GitHub Desktop.
Save linuxenko/fa12a4af2223adddb6e4 to your computer and use it in GitHub Desktop.
var color = {r: 186, g: 218, b: 85};
// RGB to HEX
var rgb2hex = function(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