ashishraics commited on
Commit
95d622d
1 Parent(s): d7b6822

change stremlit config

Browse files
Files changed (1) hide show
  1. .streamlit/config.toml +34 -0
.streamlit/config.toml ADDED
@@ -0,0 +1,34 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ [theme]
2
+ #theme primary
3
+ base="light"
4
+ # Primary accent color for interactive elements.
5
+ #primaryColor =
6
+
7
+ # Background color for the main content area.
8
+ #backgroundColor =
9
+
10
+ # Background color used for the sidebar and most interactive widgets.
11
+ #secondaryBackgroundColor ='grey'
12
+
13
+ # Color used for almost all text.
14
+ #textColor ='blue'
15
+
16
+ # Font family for all text in the app, except code blocks. One of "sans serif", "serif", or "monospace".
17
+ # Default: "sans serif"
18
+ font = "sans serif"
19
+
20
+ # [logger]
21
+ # level='info'
22
+ # messageFormat = "%(message)s"
23
+ #messageFormat="%(asctime)s %(message)s"
24
+
25
+ [global]
26
+
27
+ # By default, Streamlit checks if the Python watchdog module is available and, if not, prints a warning asking for you to install it. The watchdog module is not required, but highly recommended. It improves Streamlit's ability to detect changes to files in your filesystem.
28
+ # If you'd like to turn off this warning, set this to True.
29
+ # Default: false
30
+ disableWatchdogWarning = false
31
+
32
+ # If True, will show a warning when you run a Streamlit-enabled script via "python my_script.py".
33
+ # Default: true
34
+ showWarningOnDirectExecution = false