Code at the speed of thought – Zed is a high-performance, multiplayer code editor from the creators of Atom and Tree-sitter.
1import { ColorScheme } from "../themes/common/colorScheme"; 2import { background } from "./components"; 3 4export default function workspace(colorScheme: ColorScheme) { 5 return { 6 background: background(colorScheme.lowest.middle), 7 }; 8}