Converts a hexadecimal color code to an RGB or RGBA color string.
The hexadecimal color code to convert.
The RGB or RGBA color string.
console.log(hexToRgb('#ff0000')); // 'rgb(255, 0, 0)'console.log(hexToRgb('#ff000080')); // 'rgba(255, 0, 0, 0.5)' Copy
console.log(hexToRgb('#ff0000')); // 'rgb(255, 0, 0)'console.log(hexToRgb('#ff000080')); // 'rgba(255, 0, 0, 0.5)'
Converts a hexadecimal color code to an RGB or RGBA color string.