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 "../theme/colorScheme" 2import { background } from "./components" 3 4export default function sharedScreen(colorScheme: ColorScheme) { 5 let layer = colorScheme.highest 6 return { 7 background: background(layer), 8 } 9}