mirror of
https://github.com/antebudimir/feishin.git
synced 2026-01-01 10:23:33 +00:00
3 lines
156 B
TypeScript
3 lines
156 B
TypeScript
export const getHeaderColor = (rgbColor: string, opacity?: number) => {
|
|
return rgbColor.replace('rgb', 'rgba').replace(')', `, ${opacity || 0.8})`);
|
|
};
|