mgoin commited on
Commit
ac13cfb
1 Parent(s): 0c8feaf

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -1
app.py CHANGED
@@ -44,8 +44,12 @@ def delete_prev_fn(history: List[Tuple[str, str]]) -> Tuple[List[Tuple[str, str]
44
  message = ""
45
  return history, message or ""
46
 
 
 
 
 
47
 
48
- with gr.Blocks(css="style.css") as demo:
49
  gr.Markdown(DESCRIPTION)
50
 
51
  with gr.Group():
 
44
  message = ""
45
  return history, message or ""
46
 
47
+ theme = gr.themes.Soft(
48
+ primary_hue="blue",
49
+ secondary_hue="green",
50
+ )
51
 
52
+ with gr.Blocks(theme=theme) as demo:
53
  gr.Markdown(DESCRIPTION)
54
 
55
  with gr.Group():