function dechex(B){var A="0123456789ABCDEF";return A.charAt(Math.floor(B/16))+A.charAt(B%16)}function getColor(C,B,A){var D="#"+dechex(C)+dechex(B)+dechex(A);return D};