Spaces:
Sleeping
Sleeping
Aditya Patkar
commited on
Commit
•
5a123c6
1
Parent(s):
6d30494
Added styling
Browse files- .streamlit/config.toml +25 -0
- .vscode/settings.json +13 -0
.streamlit/config.toml
ADDED
@@ -0,0 +1,25 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
[client]
|
2 |
+
|
3 |
+
showErrorDetails = true
|
4 |
+
|
5 |
+
|
6 |
+
[theme]
|
7 |
+
|
8 |
+
# The preset Streamlit theme that your custom theme inherits from. One of "light" or "dark".
|
9 |
+
base = "light"
|
10 |
+
|
11 |
+
# Primary accent color for interactive elements. Black
|
12 |
+
primaryColor = "#000000"
|
13 |
+
|
14 |
+
# Background color for the main content area.
|
15 |
+
backgroundColor = "#FFFFFF"
|
16 |
+
|
17 |
+
# Background color used for the sidebar and most interactive widgets.
|
18 |
+
secondaryBackgroundColor = "#FBC112"
|
19 |
+
|
20 |
+
# Color used for almost all text.
|
21 |
+
textColor = "#000000"
|
22 |
+
|
23 |
+
# Font family for all text in the app, except code blocks. One of "sans serif", "serif", or "monospace".
|
24 |
+
font = "serif"
|
25 |
+
|
.vscode/settings.json
ADDED
@@ -0,0 +1,13 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"python.linting.enabled": true,
|
3 |
+
"python.linting.pylintPath": "pylint",
|
4 |
+
"editor.formatOnSave": true,
|
5 |
+
"python.formatting.provider": "yapf", // or "black" here
|
6 |
+
"python.linting.pylintEnabled": true,
|
7 |
+
"python.linting.lintOnSave": true,
|
8 |
+
"python.formatting.yapfArgs": [
|
9 |
+
"--style={based_on_style: google, column_limit: 80, indent_width: 4}"
|
10 |
+
],
|
11 |
+
|
12 |
+
|
13 |
+
}
|