mirror of
https://github.com/antebudimir/feishin.git
synced 2026-01-02 10:53:33 +00:00
8 lines
190 B
TypeScript
8 lines
190 B
TypeScript
|
|
export const rgbToRgba = (rgb: string | undefined, alpha: number) => {
|
||
|
|
if (!rgb) {
|
||
|
|
return undefined;
|
||
|
|
}
|
||
|
|
|
||
|
|
return rgb.replace(')', `, ${alpha})`).replace('rgb', 'rgba');
|
||
|
|
};
|