Files
oak-gpui/styles/src/style_tree/shared_screen.ts
T

11 lines
218 B
TypeScript

import { useTheme } from "../theme"
import { background } from "./components"
export default function sharedScreen() {
const theme = useTheme()
return {
background: background(theme.highest),
}
}