Spaces:
Running on Zero
Running on Zero
fix: dark-mode text color override for Citrus theme
Browse files
app.py
CHANGED
|
@@ -259,7 +259,11 @@ dimension. This is the model's flow-matching action output (normalized units) fo
|
|
| 259 |
`google_robot` single-arm embodiment; the video-foresight branch is discarded at inference.
|
| 260 |
"""
|
| 261 |
|
| 262 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
| 263 |
gr.Markdown(TITLE)
|
| 264 |
gr.Markdown(DESCRIPTION)
|
| 265 |
|
|
|
|
| 259 |
`google_robot` single-arm embodiment; the video-foresight branch is discarded at inference.
|
| 260 |
"""
|
| 261 |
|
| 262 |
+
CSS = """
|
| 263 |
+
.dark .gradio-container { color: var(--body-text-color); }
|
| 264 |
+
"""
|
| 265 |
+
|
| 266 |
+
with gr.Blocks(css=CSS, theme=gr.themes.Citrus()) as demo:
|
| 267 |
gr.Markdown(TITLE)
|
| 268 |
gr.Markdown(DESCRIPTION)
|
| 269 |
|