multimodalart HF Staff commited on
Commit
d8f82c2
·
verified ·
1 Parent(s): 54bd757

fix: dark-mode text color override for Citrus theme

Browse files
Files changed (1) hide show
  1. app.py +5 -1
app.py CHANGED
@@ -642,4 +642,8 @@ be explained by the uncertainty subspace.
642
  ],
643
  )
644
 
645
- demo.launch(mcp_server=True, theme=gr.themes.Citrus())
 
 
 
 
 
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())