Skip to content

Instantly share code, notes, and snippets.

@guiled
guiled / anim.js
Last active November 11, 2015 17:23 — forked from skypanther/anim.js
A fixed version for animated color in Titanium
// next two from http://stackoverflow.com/a/5624139/292947
function componentToHex(c) {
var hex = c.toString(16);
return hex.length == 1 ? "0" + hex : hex;
}
function rgbToHex(r, g, b) {
return "#" + componentToHex(r) + componentToHex(g) + componentToHex(b);
}