How to set the background (body) color of Streamlit Complete App?

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)

2 Likes