This commit is contained in:
Dax Raad
2025-11-01 12:14:10 -04:00
parent 22a34d7958
commit 65d0b3ed6d

View File

@@ -72,11 +72,11 @@ type Theme = {
type HexColor = `#${string}`
type RefName = string
type ColorModeObj = {
type Variant = {
dark: HexColor | RefName
light: HexColor | RefName
}
type ColorValue = HexColor | RefName | ColorModeObj
type ColorValue = HexColor | RefName | Variant
type ThemeJson = {
$schema?: string
defs?: Record<string, HexColor | RefName>