Spaces:
Running
Running
Upload config.toml
Browse filesAdded themeing to the app
- .streamlit/config.toml +9 -0
.streamlit/config.toml
ADDED
@@ -0,0 +1,9 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
[theme]
|
2 |
+
base = "dark"
|
3 |
+
primaryColor = "#C77DFF" # Soft neon purple - vibrant yet not overwhelming
|
4 |
+
backgroundColor = "#1E1E2F" # Deep twilight blue for a modern feel
|
5 |
+
secondaryBackgroundColor = "#2A2A40" # Slightly lighter for content cards
|
6 |
+
textColor = "#E0E0E0" # Light gray for good contrast without harshness
|
7 |
+
linkColor = "#F15BB5" # Energetic pink for visual pop
|
8 |
+
codeBackgroundColor = "#2F2F3F" # Muted deep gray for comfort while reading code
|
9 |
+
|