No description available.
Properties
colorScheme
string
Required
Whether the theme is light or dark.
colors
ref
#colors
Required
Full color palette for the theme.
effects
ref
#effects
Optional
Visual effects like depth shadows and noise texture.
sizing
ref
#sizing
Optional
Border radius, component sizing, and border width values.
typography
ref
#typography
Optional
Font configuration for headings and body text.
View raw schema
{
"type": "object",
"required": [
"colorScheme",
"colors"
],
"properties": {
"colors": {
"ref": "#colors",
"type": "ref",
"required": true,
"description": "Full color palette for the theme."
},
"sizing": {
"ref": "#sizing",
"type": "ref",
"description": "Border radius, component sizing, and border width values."
},
"effects": {
"ref": "#effects",
"type": "ref",
"description": "Visual effects like depth shadows and noise texture."
},
"typography": {
"ref": "#typography",
"type": "ref",
"description": "Font configuration for headings and body text."
},
"colorScheme": {
"enum": [
"light",
"dark"
],
"type": "string",
"required": true,
"description": "Whether the theme is light or dark."
}
}
}