html,
body,
:root {
height: 100%;
--color-background: #1c1f26;
--color-component: #16181d;
--color-primary: #1a73e8;
--color-secondary: #ff6f61;
--color-gray-500: #bbbbbb;
--color-gray-700: #444444;
}
hello! the above code is inside of a globals.css file to make sure that I have my websites color defined in one area. however im having a little bit of trouble accessing these classes in something like Appshell.Header. <AppShell.Header withBorder={false} style={{ backgroundColor: 'var(--color-background)' }}>
I tried doing something like the above in order to get the proper color from my globals.css file but it doesent work. Any div that I use is able to use these colors but im having a little trouble with the mantine way of doing things. Can anyone lead me to the right resources/directions to solve this issue? I know that mantine allows you to make custom themes however I would rather not define colors in two places and just have one file defining all the colors for me.