I want to style my ApexCharts using my tailwind colors like red-500, but I cannot use CSS classes or the theme() function in a post-CSS context.
Since I have already extended the default config, I cannot reference it either.
One potential solution could be importing the new config's colors, but this may not be the best approach as it could lead to inaccessible CSS classes generated with utilities.
Another idea is to add a hidden HTML element to the DOM, extract the CSS property from it, and then remove it, but this method also seems less than ideal.