Archive for the 'Snippet' Category

oh my little rgb to hex function

how I love you

function rgb(r,g,b){
return r.toString(16) + g.toString(16) + b.toString(16);
}