Sheepbon commited on
Commit
b3b5774
·
verified ·
1 Parent(s): c600ba9

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -5
app.py CHANGED
@@ -152,15 +152,13 @@ def vote(data: gr.LikeData):
152
  chat_theme = gr.themes.Monochrome(
153
  primary_hue = "pink",
154
  secondary_hue = "rose",
155
- neutral_hue = "rose",
156
- ).set(
157
  input_background_fill = "*neutral_100",
158
- input_border_color_focus = "*primary_200"
159
- )
160
 
161
  title = """# 🐑 NutriAssist 🌱"""
162
 
163
- with gr.Blocks() as demo:
164
  # chatbot = gr.Chatbot(label="NutriAssist")
165
  # chatbot.like(vote, None, None)
166
 
 
152
  chat_theme = gr.themes.Monochrome(
153
  primary_hue = "pink",
154
  secondary_hue = "rose",
155
+ neutral_hue = "rose").set(
 
156
  input_background_fill = "*neutral_100",
157
+ input_border_color_focus = "*primary_200")
 
158
 
159
  title = """# 🐑 NutriAssist 🌱"""
160
 
161
+ with gr.Blocks(theme = chat_theme) as demo:
162
  # chatbot = gr.Chatbot(label="NutriAssist")
163
  # chatbot.like(vote, None, None)
164