We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
46336be
There was an error while loading. Please reload this page.
Allow single depth theme. Previously this was a type error and result in non-ideal CSS variable name
const theme = createTheme({ red: '#ff0000' })
Before:
theme.red // type error theme.red === "var(---red)"
After:
theme.red === "var(--red)"
7afb12b
Fix type definition for infinite nested prop
12012d1
Allow infinite property nesting 83f288b
This is not possible before
const theme = createTheme({ a: { b: { c: { d: '' } } } });