Overriding CSS generated by Gradio

Hi, I am trying to add some style to an internal Gradio app with Gradio 3.16.0. Specifically, I am trying to change the color under the

to white, but the default autogenerated CSS is overriding it. I am using the css attribute in the gr.Interface(…)

I tried creating a style on css file that would override but it’s now working.

Thanks!
Ariel

A super hacky way to do it is by adding an internal style to the title attribute, title=" My App<style>.gr-prose h1 {color: white;font-family: -apple-system, BlinkMacSystemFont, sans-serif;}</style>",

Let me know if anyone knows a better way.

Thanks!
Ariel