wix-style-react
Version:
15 lines (13 loc) • 341 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports["default"] = hex_to_rgba;
function hex_to_rgba(hex) {
var result = /^#?([a-f\d]{2})([a-f\d]{2})([a-f\d]{2})$/i.exec(hex);
return result ? {
r: parseInt(result[1], 16),
g: parseInt(result[2], 16),
b: parseInt(result[3], 16)
} : null;
}