Spaces:
Paused
Paused
Create .streamlit/config.toml
Browse files- .streamlit/config.toml +25 -0
.streamlit/config.toml
ADDED
|
@@ -0,0 +1,25 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
[theme]
|
| 2 |
+
base = "light"
|
| 3 |
+
primaryColor = "#e0e0e0" # Dark blue for primary elements
|
| 4 |
+
backgroundColor = "#f8f5f0" #"#f8f9fa" # Very light gray for main background
|
| 5 |
+
secondaryBackgroundColor = "#ffffff" # White for cards/sidebar
|
| 6 |
+
textColor = "#212529" # Dark gray for text
|
| 7 |
+
font = "sans serif"
|
| 8 |
+
|
| 9 |
+
[layout]
|
| 10 |
+
# Makes layout stretch across the screen — very helpful for large tab spacing and responsiveness
|
| 11 |
+
wide = true
|
| 12 |
+
|
| 13 |
+
[server]
|
| 14 |
+
# Ensures Streamlit runs in headless mode (default in production)
|
| 15 |
+
headless = true
|
| 16 |
+
|
| 17 |
+
# Automatically reload when file changes
|
| 18 |
+
runOnSave = true
|
| 19 |
+
|
| 20 |
+
[client]
|
| 21 |
+
# Minimizes the top toolbar (menu and help) for cleaner UI
|
| 22 |
+
toolbarMode = "minimal"
|
| 23 |
+
|
| 24 |
+
# Allows embedded apps to resize based on content (helps mobile-friendliness)
|
| 25 |
+
showErrorDetails = true
|