(Forgive me as I am not really used to JS development, and I am updated from astrojs v1 to astrojs v5)
I have a global.css file with an (example) snippet:
@import "tailwindcss";
@plugin '@tailwindcss/typography';
@theme {
--color-brand-fg: #FFFFFF';
/* ... */
}
however, using something like <span class="text-brand-fg">foo<span> does not work, as the css variable apparently isn't set. See:
Any tips? Thanks in advance.