Code at the speed of thought – Zed is a high-performance, multiplayer code editor from the creators of Atom and Tree-sitter.
1import chroma from "chroma-js" 2 3export function with_opacity(color: string, opacity: number): string { 4 return chroma(color).alpha(opacity).hex() 5}