terry-li-hm commited on
Commit
41257f9
·
1 Parent(s): b8c0ef3
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -36,9 +36,9 @@ def model_inference(input_wav, language):
36
 
37
  def launch():
38
  # Create a custom orange theme
39
- orange_theme = gr.themes.Default().set(
40
- primary_hue=colors.orange,
41
- secondary_hue=colors.stone,
42
  )
43
 
44
  with gr.Blocks(theme=orange_theme) as demo:
 
36
 
37
  def launch():
38
  # Create a custom orange theme
39
+ orange_theme = gr.themes.Base(
40
+ primary_hue="orange",
41
+ secondary_hue="stone",
42
  )
43
 
44
  with gr.Blocks(theme=orange_theme) as demo: