Files
my-links/inertia/lib/color.ts
2024-10-07 01:33:59 +02:00

7 lines
191 B
TypeScript

import hexRgb from 'hex-rgb';
export const rgba = (hex: string, alpha: number) => {
const rgb = hexRgb(hex, { format: 'array' }).slice(0, -1).join(',');
return `rgba(${rgb},${alpha})`;
};