Browsing archives for 'Snippet'

oh my little rgb to hex function

JavaScript,Programming,Snippet 30 May 2007 | 0 Comments

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