ronniet commited on
Commit
9ac034b
1 Parent(s): 43439da

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -2
app.py CHANGED
@@ -63,13 +63,14 @@ def predict(image):
63
 
64
  return text, audio
65
 
66
- # theme = gr.themes.Default(primary_hue="blue")
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: blue}"
 
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()