Text with color style in component.html() is not seen in Dark Theme. Is it possible to identify the theme changes in the code and accordingly set the color of the text in component.html()?
Sample code:
import streamlit.components.v1 as components
components.html(
'<html><body>
<div style="color: rgb(81, 0, 12); font-size: 23px; font-family: "Book Antiqua";">
"This is a test message."
</div>
</body></html>'
)