Spaces:
Running on Zero
Running on Zero
fix: dark-mode text color override for Citrus theme
Browse files
app.py
CHANGED
|
@@ -708,7 +708,11 @@ examples = [
|
|
| 708 |
["demo/examples/2_scott_0_5_5.wav"],
|
| 709 |
]
|
| 710 |
|
| 711 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
| 712 |
fn=gesturelsm,
|
| 713 |
inputs=[
|
| 714 |
gr.Audio(type="filepath", label="Upload Audio"),
|
|
|
|
| 708 |
["demo/examples/2_scott_0_5_5.wav"],
|
| 709 |
]
|
| 710 |
|
| 711 |
+
CSS = """
|
| 712 |
+
.dark .gradio-container { color: var(--body-text-color); }
|
| 713 |
+
"""
|
| 714 |
+
|
| 715 |
+
demo = gr.Interface(css=CSS,
|
| 716 |
fn=gesturelsm,
|
| 717 |
inputs=[
|
| 718 |
gr.Audio(type="filepath", label="Upload Audio"),
|