color.ts

1import chroma from "chroma-js";
2
3export function withOpacity(color: string, opacity: number): string {
4  return chroma(color).alpha(opacity).hex();
5}