19 lines
414 B
JavaScript
19 lines
414 B
JavaScript
function Color(val = '000000')
|
|
{
|
|
this.val = val;
|
|
|
|
this.rgb = function()
|
|
{
|
|
var result = /^#?([a-f\d]{2})([a-f\d]{2})([a-f\d]{2})$/i.exec(this.val);
|
|
return result ? {
|
|
r: parseInt(result[1], 16),
|
|
g: parseInt(result[2], 16),
|
|
b: parseInt(result[3], 16)
|
|
} : null;
|
|
}
|
|
|
|
this.rgba = function()
|
|
{
|
|
return "rgba("+this.rgb().r+","+this.rgb().g+","+this.rgb().b+",1)";
|
|
}
|
|
} |