Theme Change using st.markdown

Hi @udo

Those edits are to be put inside a .streamlit/config.toml file (Theming - Streamlit Docs).

Edits done in st.markdown should be CSS Selectors + Properties only like

<style>
body {
    background-color: lightgoldenrodyellow;
}

div[role="listbox"] ul {
    background-color: red;
}
</style>

There are some tutorials wandering in this forum like

to understand all the HTML blocks and CSS properties you can edit within the Streamlit app.

Have a nice day,
Fanilo :balloon: