Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -63,13 +63,14 @@ def predict(image):
|
|
63 |
|
64 |
return text, audio
|
65 |
|
66 |
-
|
67 |
|
68 |
demo = gr.Interface(
|
69 |
fn=predict,
|
70 |
inputs=gr.Image(type="pil"),
|
71 |
outputs=['text', gr.Audio(type="numpy")],
|
72 |
-
css=".gradio-container {background-color:
|
|
|
73 |
)
|
74 |
|
75 |
demo.launch()
|
|
|
63 |
|
64 |
return text, audio
|
65 |
|
66 |
+
theme = gr.themes.Default(primary_hue="#002A5B")
|
67 |
|
68 |
demo = gr.Interface(
|
69 |
fn=predict,
|
70 |
inputs=gr.Image(type="pil"),
|
71 |
outputs=['text', gr.Audio(type="numpy")],
|
72 |
+
css=".gradio-container {background-color: #002A5B}",
|
73 |
+
theme=theme
|
74 |
)
|
75 |
|
76 |
demo.launch()
|