UNPKG

hd-utils

Version:

A handy utils for modern JS developers

7 lines (6 loc) 235 B
import { StringOrNumber } from '../types'; /** * @description converts hex colors to rgba color. * @example hexToRgbA("#fff") // rgba(255,255,255,1) */ export default function hexToRgbA(hex: string, alpha?: StringOrNumber): string;