mirror of
https://github.com/jeffvli/feishin.git
synced 2026-05-07 20:40:15 +02:00
4 lines
156 B
TypeScript
4 lines
156 B
TypeScript
export const getHeaderColor = (rgbColor: string, opacity?: number) => {
|
|
return rgbColor.replace('rgb', 'rgba').replace(')', `, ${opacity || 0.8})`);
|
|
};
|