nmariotto commited on
Commit
7de9783
·
verified ·
1 Parent(s): 1fd32ad

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +52 -0
app.py CHANGED
@@ -16,6 +16,58 @@ from googleapiclient.http import MediaIoBaseUpload
16
  import gspread
17
  import time
18
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
19
 
20
  # 🔥 Initialize Roboflow
21
  API_KEY = "mGkz7QhkhD90YfeiaOxV"
 
16
  import gspread
17
  import time
18
 
19
+ st.markdown("""
20
+ <style>
21
+ html, body, [data-testid="stApp"] {
22
+ background-color: #0f1117;
23
+ color: #f2f2f2;
24
+ font-family: 'Helvetica Neue', sans-serif;
25
+ }
26
+
27
+ [data-testid="stHeader"] {
28
+ background-color: #0f1117;
29
+ }
30
+
31
+ .stButton > button {
32
+ background-color: #1d4ed8;
33
+ color: white;
34
+ font-weight: 600;
35
+ border: none;
36
+ padding: 0.5em 1.2em;
37
+ border-radius: 6px;
38
+ }
39
+
40
+ .stButton > button:hover {
41
+ background-color: #1e40af;
42
+ }
43
+
44
+ label, .stRadio label, .stSelectbox label,
45
+ .stTextInput label, .stTextArea label {
46
+ color: #d1d5db !important;
47
+ font-weight: 500;
48
+ opacity: 1 !important;
49
+ }
50
+
51
+ div[role="radiogroup"] label,
52
+ .stRadio > div label {
53
+ opacity: 1 !important;
54
+ color: #d1d5db !important;
55
+ }
56
+
57
+ input, textarea {
58
+ color: #ffffff !important;
59
+ background-color: #2a2e39;
60
+ border-radius: 4px;
61
+ border: none;
62
+ padding: 0.4em;
63
+ }
64
+
65
+ .stMarkdown h1, .stMarkdown h2, .stMarkdown h3 {
66
+ color: #ffffff;
67
+ }
68
+ </style>
69
+ """, unsafe_allow_html=True)
70
+
71
 
72
  # 🔥 Initialize Roboflow
73
  API_KEY = "mGkz7QhkhD90YfeiaOxV"