feishin/src/renderer/utils/rgb-to-rgba.ts

8 lines
190 B
TypeScript
Raw Normal View History

2023-07-20 17:09:10 -07:00
export const rgbToRgba = (rgb: string | undefined, alpha: number) => {
if (!rgb) {
return undefined;
}
return rgb.replace(')', `, ${alpha})`).replace('rgb', 'rgba');
};