6 lines
151 B
TypeScript
6 lines
151 B
TypeScript
import chroma from "chroma-js"
|
|
|
|
export function with_opacity(color: string, opacity: number): string {
|
|
return chroma(color).alpha(opacity).hex()
|
|
}
|