#Change background/body color
5 messages · Page 1 of 1 (latest)
https://mantine.dev/styles/css-variables/#css-variables-resolver
const resolver = (theme) => ({
variables: {},
light: {
'--mantine-color-body': ...,
},
dark: {
'--mantine-color-body': ...,
},
});
<MantineProvider cssVariablesResolver={resolver}>
...
</MantineProvider>
import { MantineTheme } from "@mantine/core"