1
mirror of https://github.com/jakejarvis/jarv.is.git synced 2025-04-26 09:25:22 -04:00
jarv.is/lib/styles/utils/hex-to-rgba.ts
2022-10-23 12:58:23 -04:00

7 lines
220 B
TypeScript

import hexToRgbaOrig from "hex-to-rgba";
// removes spaces from default hex-to-rgba output
const hexToRgba = (color: string, alpha?: number) => hexToRgbaOrig(color, alpha).replace(/\s/g, "");
export default hexToRgba;