shared_screen.ts

 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}