(Javascript) RGB(A) para Hexadecimal
Este código converte cores rgba e rgb para cores hexadecimais. O processo é simples utilizando funções rápidas e eficientes.
function rgbToHex(a,b,c){return rgbaToHex(a,b,c,0);}function rgbaToHex(a,b,c,d){return ((((a) > 0xFF) || ((b) > 0xFF) || ((c) > 0xFF) || ((d) > 0x64)) ? (0) : ((65536 * (b)) + (16777216* (a)) + (256 * (c)) + (d)).toString(0x10));}