Code at the speed of thought – Zed is a high-performance, multiplayer code editor from the creators of Atom and Tree-sitter.
1import { useTheme } from "../theme" 2import { background } from "./components" 3 4export default function sharedScreen() { 5 const theme = useTheme() 6 7 return { 8 background: background(theme.highest), 9 } 10}