lit-element uniquely manages CSS encapsulation by allowing styling only through custom CSS variables.
Contrarily, tailwindcss applies styles via classes and there seems to be no external injection method available.
I aim to create a custom lit-component that remains independent of tailwind. It should have minimal styling and provide users with full customization options.
Currently, my solution involves passing classes as a property and applying them using classMap. However, the issue lies in determining where these classes should be applied without adding them individually to each element, which would be impractical. Moreover, integrating tailwind may pose challenges due to style encapsulation.