cvips
commited on
Commit
·
013d2dd
1
Parent(s):
ca0fa47
front end updated
Browse files
app.py
CHANGED
@@ -239,6 +239,42 @@ CUSTOM_CSS = """
|
|
239 |
background-color: #2B2B2B !important;
|
240 |
border-color: #424242 !important;
|
241 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
242 |
"""
|
243 |
|
244 |
# Define Gradio interface
|
|
|
239 |
background-color: #2B2B2B !important;
|
240 |
border-color: #424242 !important;
|
241 |
}
|
242 |
+
|
243 |
+
/* Additional text color rules */
|
244 |
+
.gr-text-input, .gr-text-input::placeholder {
|
245 |
+
color: #FFFFFF !important;
|
246 |
+
}
|
247 |
+
|
248 |
+
.gr-dropdown span {
|
249 |
+
color: #FFFFFF !important;
|
250 |
+
}
|
251 |
+
|
252 |
+
.gr-label {
|
253 |
+
color: #FFFFFF !important;
|
254 |
+
}
|
255 |
+
|
256 |
+
.gr-button-secondary {
|
257 |
+
color: #FFFFFF !important;
|
258 |
+
}
|
259 |
+
|
260 |
+
.gr-panel {
|
261 |
+
background-color: #2B2B2B !important;
|
262 |
+
color: #FFFFFF !important;
|
263 |
+
}
|
264 |
+
|
265 |
+
.gr-box label {
|
266 |
+
color: #FFFFFF !important;
|
267 |
+
}
|
268 |
+
|
269 |
+
/* Gallery labels */
|
270 |
+
.gr-gallery-item div {
|
271 |
+
color: #FFFFFF !important;
|
272 |
+
}
|
273 |
+
|
274 |
+
/* Output text */
|
275 |
+
.output-text, .output-markdown {
|
276 |
+
color: #FFFFFF !important;
|
277 |
+
}
|
278 |
"""
|
279 |
|
280 |
# Define Gradio interface
|