Antoine245 commited on
Commit
e95887c
·
1 Parent(s): f2b22bd

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -26,10 +26,10 @@ examples = [
26
  history = ['']
27
 
28
 
29
- with gr.Blocks() as demo:
30
  chatbot = gr.Chatbot()
31
  msg = gr.Textbox()
32
- btn = gr.Button("Submit", css="background-color: #ff0000")
33
  clear = gr.ClearButton([msg, chatbot])
34
 
35
 
 
26
  history = ['']
27
 
28
 
29
+ with gr.Blocks(theme=gr.themes.Soft()) as demo:
30
  chatbot = gr.Chatbot()
31
  msg = gr.Textbox()
32
+ btn = gr.Button("Submit")
33
  clear = gr.ClearButton([msg, chatbot])
34
 
35