color.ts

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