Skip to content

Types

interface Theme {
name: string
variables: Record<string, string>
styles?: string
}
interface ThemeContextValue {
name: string
variables: Record<string, string>
styles?: string
setVariable(name: string, value: string): void
}