I tried with the below code in markdown but unable, can anyone help me out in this?
st.markdown("<body style='background-color: Blue;'>",unsafe_allow_html=True)
I tried with the below code in markdown but unable, can anyone help me out in this?
st.markdown("<body style='background-color: Blue;'>",unsafe_allow_html=True)
Thanks. I think below will workout:
st.markdown('<style>body{background-color: Blue;}</style>',unsafe_allow_html=True)