Skip to content

Instantly share code, notes, and snippets.

View felicedeNigris's full-sized avatar

Felice DeNigris felicedeNigris

  • San Francisco Bay area.
View GitHub Profile
// convert 0..255 R,G,B values to binary string
RGBToBin = function(r,g,b){
var bin = r << 16 | g << 8 | b;
return (function(h){
return new Array(25-h.length).join("0")+h
})(bin.toString(2))
}
// convert 0..255 R,G,B values to a hexidecimal color string
RGBToHex = function(r,g,b){