This repository has been archived on 2025-03-19. You can view files and clone it, but cannot push or open issues or pull requests.
feishin/src/renderer/utils/rgb-to-rgba.ts
2023-07-20 17:09:10 -07:00

7 lines
190 B
TypeScript

export const rgbToRgba = (rgb: string | undefined, alpha: number) => {
if (!rgb) {
return undefined;
}
return rgb.replace(')', `, ${alpha})`).replace('rgb', 'rgba');
};