Spaces:
Sleeping
Sleeping
Update src/streamlit_app.py
Browse files- src/streamlit_app.py +14 -0
src/streamlit_app.py
CHANGED
|
@@ -9,6 +9,20 @@ st.set_page_config(
|
|
| 9 |
initial_sidebar_state="collapsed"
|
| 10 |
)
|
| 11 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 12 |
# --- LOGO ---
|
| 13 |
def get_logo_base64(logo_path):
|
| 14 |
if not os.path.exists(logo_path):
|
|
|
|
| 9 |
initial_sidebar_state="collapsed"
|
| 10 |
)
|
| 11 |
|
| 12 |
+
# Set dark theme programmatically
|
| 13 |
+
st.markdown(
|
| 14 |
+
"""
|
| 15 |
+
<style>
|
| 16 |
+
body, .main, .stApp {
|
| 17 |
+
background: #1b2230 !important;
|
| 18 |
+
color: #fff !important;
|
| 19 |
+
}
|
| 20 |
+
</style>
|
| 21 |
+
""",
|
| 22 |
+
unsafe_allow_html=True
|
| 23 |
+
)
|
| 24 |
+
|
| 25 |
+
|
| 26 |
# --- LOGO ---
|
| 27 |
def get_logo_base64(logo_path):
|
| 28 |
if not os.path.exists(logo_path):
|