- preventing dark/light mode flicker
- unlimited color schemes
- better debugging experience in browser dev tools
- and more
styles.css
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Using the latest CSS variables improvements from MUI
<Button sx={{
backgroundColor: theme.vars.palette.primary.main, // var(--mui-palette-primary-main)
color: theme.vars.palette.primary.contrastText, // var(--mui-palette-primary-contrastText)
}}>
Click me
</Button>
.feature-section {
background-color: var(--mui-palette-grey-50);
}