import * as React from 'react'; import { experimental_extendTheme as extendTheme, Experimental_CssVarsProvider as CssVarsProvider, styled, useTheme, Overlays, } from '@mui/material/styles'; import type {} from '@mui/material/themeCssVarsAugmentation'; const customTheme = extendTheme({ colorSchemes: { light: { opacity: { inputPlaceholder: 0.1, inputUnderline: 0.1, }, overlays: Array(25).fill('') as Overlays, palette: { AppBar: { darkBg: '', darkColor: '', defaultBg: '', }, // @ts-expect-error mode: '', getContrastText: () => '', tonalOffset: 1, }, }, dark: { opacity: {}, palette: {}, }, }, components: { MuiButton: { styleOverrides: { root: ({ theme }) => ({ color: theme.vars.palette.primary.main, }), }, }, }, }); const TestStyled = styled('div')(({ theme }) => ({ // test that `theme.vars` works color: theme.vars.palette.primary.main, // test that `theme.getColorSchemeSelector` works [theme.getColorSchemeSelector('dark')]: { color: theme.vars.palette.common.onBackground, }, })); function TestUseTheme() { const theme = useTheme(); // test that `theme` from useTheme has access to CSS vars return