St.Success 个自定义问题 (Streamlit)

St.Success of Customization Problems (Streamlit)

有什么方法可以改变 st.success 的字体和背景颜色以及不透明度吗?因为默认颜色似乎没有任何东西。 这是问题的视觉效果:

import streamlit as st

st.markdown('''
<style>
.element-container {
    background-color: blue;
    opacity: 1;
}
.st-b7 {
    color: white;
}
.css-nlntq9 {
    font-family: Source Sans Pro;
}
</style>
''', unsafe_allow_html=True)

st.success('Whoever is happy will make others happy too. -Anne Frank')

 txt="text here"    
 htmlstr1=f"""<p style='background-color:green;
                                           color:white;
                                           font-size:18px;
                                           border-radius:3px;
                                           line-height:60px;
                                           padding-left:17px;
                                           opacity:0.6'>
                                           {txt}</style>
                                           <br></p>""" 
                    st.markdown(htmlstr1,unsafe_allow_html=True) 

这是一种方法。它不会影响我的代码中的任何地方。