Files
blog_bricked/src/lib/postcss/functions/index.ts
2025-09-29 15:20:46 +02:00

6 lines
132 B
TypeScript

module.exports = {
alpharize: (color: string, opacity: number) => {
return `oklch(from ${color} l c h / ${opacity})`;
},
};