HI! I was writing some code using streamlit, but I can’t change the color of the lettering and when you hover over the text
page_bg_img = f"""
<style>
[data-testid="stAppViewContainer"] > .main {{
background-image: linear-gradient(to bottom, #89b40e, #00b352, #00ad99, #00a3c7, #0096e2, #3d9ddc, #559dda, #68a7d8, #4ca0e2, #3a9ae6, #3f9ae3, #5ed7df);
background-size: 200%;
}}
[data-testid="stSidebar"] > div:first-child {{
background-image: linear-gradient(to right top, #7c99cc, #00b4e2, #00c7cc, #00d882, #a4e40e);
color: black;
}}
[data-testid="stHeader"] {{
background:rgba(0,0,0,0);
}}
[data-testid="stToolbar"] {{
right: 2rem;
}}
footer {{visibility:hidden;}}
MainMenu {{visibility:hidden;}}
.streamlit-expanderTooltip span:hover {{
color: blue !important;}}
</style>
"""
st.markdown(page_bg_img, unsafe_allow_html=True)