function rgbColor(color){
if(/^rgb\(\d+%?,\d+%?,\d+%?\)$/i.test(color)) return color;
var hex= color.toLowerCase();
if(/^#/.test(hex)==false){
if(hex=='transparent')return hex;
cnames={
aqua:'00ffff',black:'000000',blue:'0000ff',
fuchsia:'ff00ff',gray:'808080',green:'008000',lime:'00ff00',
maroon:'800000',navy:'000080',olive:'808000',purple:'800080',
red:'ff0000',silver:'c0c0c0',teal:'008080',white:'ffffff',yellow:'ffff00'
}
hex= cnames[hex];
if(!hex) return '';
hex='#'+hex;
}
if (/^\#[a-f0-9]{3}$/.test(hex)){
var A = hex.substring(1).split('');
for(var i= 0; i< 3; i++) A[i]+=A[i];
hex='#'+A.join('');
}
if (/^\#[a-f0-9]{6}$/.test(hex)){
hex=hex.replace(/^#/,'0x');
var c= [(hex >>16) & 255,(hex >> 8) & 255, hex & 255];
return 'rgb('+c.join(',')+')';
}
}
Bookmarks