discord-card-canvas
Version:
👾 Simple creating cards using canvas. Welcome, Rank, Info and so on.
19 lines (18 loc) • 616 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.hexToRgbA = void 0;
const hexToRgbA = (hex, opacity = 1) => {
let c;
if (hex.length === 9 && hex.includes('#'))
hex = hex.slice(0, 7);
if (/^#([A-Fa-f0-9]{3}){1,2}$/.test(hex)) {
c = hex.substring(1).split('');
if (c.length == 3) {
c = [c[0], c[0], c[1], c[1], c[2], c[2]];
}
c = '0x' + c.join('');
return 'rgba(' + [(c >> 16) & 255, (c >> 8) & 255, c & 255].join(',') + `,${opacity})`;
}
throw new Error('Bad Hex');
};
exports.hexToRgbA = hexToRgbA;