Spaces:
Sleeping
Sleeping
Create .streamlit/config.toml
Browse files- .streamlit/config.toml +21 -0
.streamlit/config.toml
ADDED
@@ -0,0 +1,21 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
[theme]
|
2 |
+
|
3 |
+
# The preset Streamlit theme that your custom theme inherits from.
|
4 |
+
# One of "light" or "dark".
|
5 |
+
base = "light"
|
6 |
+
|
7 |
+
# Primary accent color for interactive elements.
|
8 |
+
primaryColor = "#9999FF"
|
9 |
+
|
10 |
+
# Background color for the main content area.
|
11 |
+
backgroundColor = "#E6EBFB"
|
12 |
+
|
13 |
+
# Background color used for the sidebar and most interactive widgets.
|
14 |
+
secondaryBackgroundColor = "#F7FBFD"
|
15 |
+
|
16 |
+
# Color used for almost all text.
|
17 |
+
textColor = "#26004D"
|
18 |
+
|
19 |
+
# Font family for all text in the app, except code blocks. One of "sans serif",
|
20 |
+
# "serif", or "monospace".
|
21 |
+
font ="sans serif"
|