#MantineProvider body color

3 messages · Page 1 of 1 (latest)

polar viper
#

Hello! I'm doing my first project in Mantine. I'm using dark color scheme and i'm wondering how can i change the color of body? because it's always dark, i tried to change it by css variables or create theme and still it has same color 🤔

:root[data-mantine-color-scheme="dark"] {
  --mantine-color-body: #ffffff !important;
}

:root[data-mantine-color-scheme="dark"] body {
  --mantine-color-body: #ffffff !important;
}

body, #root, :root .mantine-Provider {
  background-color: rgba(255, 255, 255, 0) !important;
}

i tried these and nothing changed, i want to change ONLY body background

polar viper