streamlit调成黑色背景
时间: 2023-12-09 11:35:10 浏览: 295
Python Streamlit 360全景照片 Web
要将Streamlit的背景颜色调整为黑色,您可以在Streamlit应用程序中添加以下代码:
```python
import streamlit as st
# 设置页面的背景颜色和文本颜色
def set_page_bg(*args):
"""
设置页面的背景颜色和文本颜色
"""
# 设置页面的背景颜色
page_bg_color = "#000000"
st.markdown(
f"""
<style>
.reportview-container {{
background-color: {page_bg_color};
color: #fff
}}
</style>
""",
unsafe_allow_html=True
)
set_page_bg()
```
这将把页面的背景颜色设置为黑色,并将文本颜色设置为白色。
阅读全文