Spaces:
Running on Zero
Running on Zero
fix: dark-mode text color override for Citrus theme
Browse files
app.py
CHANGED
|
@@ -642,4 +642,8 @@ be explained by the uncertainty subspace.
|
|
| 642 |
],
|
| 643 |
)
|
| 644 |
|
| 645 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 642 |
],
|
| 643 |
)
|
| 644 |
|
| 645 |
+
CSS = """
|
| 646 |
+
.dark .gradio-container { color: var(--body-text-color); }
|
| 647 |
+
"""
|
| 648 |
+
|
| 649 |
+
demo.launch(css=CSS, mcp_server=True, theme=gr.themes.Citrus())
|