multimodalart HF Staff commited on
Commit
2f93222
·
verified ·
1 Parent(s): dad0fdc

fix: dark-mode text color override for Citrus theme

Browse files
Files changed (1) hide show
  1. app.py +5 -1
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
- with gr.Blocks(theme=gr.themes.Citrus()) as demo:
 
 
 
 
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