allyyy commited on
Commit
59a6ea9
·
verified ·
1 Parent(s): a9d60eb

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +10 -0
app.py CHANGED
@@ -157,6 +157,15 @@ topics2= """
157
  - Support Resources
158
  """
159
 
 
 
 
 
 
 
 
 
 
160
  # Create a Gradio HTML component
161
  def display_iframe():
162
  return iframe
@@ -183,6 +192,7 @@ theme = gr.themes.Default(
183
 
184
  # Setup the Gradio Blocks interface with custom layout components
185
  with gr.Blocks(theme=theme) as demo:
 
186
  gr.Image("CalmConnect.jpg", show_label = False, show_share_button = False, show_download_button = False)
187
  gr.Markdown(welcome_message) # Display the formatted welcome message
188
  with gr.Row():
 
157
  - Support Resources
158
  """
159
 
160
+ custom_css = """
161
+ <style>
162
+ .gr-chat-message {
163
+ background-color: "#f8f1ea" !important;
164
+ color: #f8f1ea;
165
+ }
166
+ </style>
167
+ """
168
+
169
  # Create a Gradio HTML component
170
  def display_iframe():
171
  return iframe
 
192
 
193
  # Setup the Gradio Blocks interface with custom layout components
194
  with gr.Blocks(theme=theme) as demo:
195
+ gr.HTML(custom_css)
196
  gr.Image("CalmConnect.jpg", show_label = False, show_share_button = False, show_download_button = False)
197
  gr.Markdown(welcome_message) # Display the formatted welcome message
198
  with gr.Row():