I’m developiong a custom board view with React, the text on my page is not having the correct colors applied.
The color CSS property of a text element does have the value var(--primary-text-color)
but since I’m on the dark theme, I would expect that the text color is white.
In my layout.tsx
file, I have the following import:
import "monday-ui-react-core/tokens";
Do I need to do anything more in my code to apply the theme colors?
Should I use the ThemeProvider in my code? I’ve tried it, but it doesn’t make a difference for now.