dogutcu commited on
Commit
d5031b6
·
verified ·
1 Parent(s): f851da6

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +12 -0
app.py CHANGED
@@ -141,6 +141,17 @@ def display_image():
141
  return "https://huggingface.co/spaces/dogutcu/composting-how-tos/resolve/main/compbot.jpeg"
142
 
143
 
 
 
 
 
 
 
 
 
 
 
 
144
  theme = gr.themes.Base().set(
145
  background_fill_primary='#AFC9AD', # Light cyan background
146
  background_fill_primary_dark='#AFC9AD', # Dark teal background
@@ -157,6 +168,7 @@ theme = gr.themes.Base().set(
157
 
158
  # Setup the Gradio Blocks interface with custom layout components
159
  with gr.Blocks(theme=theme) as demo:
 
160
  gr.Image(display_image(), show_label = False, show_share_button = False, show_download_button = False)
161
  gr.Markdown(welcome_message) # Display the formatted welcome message
162
  with gr.Row():
 
141
  return "https://huggingface.co/spaces/dogutcu/composting-how-tos/resolve/main/compbot.jpeg"
142
 
143
 
144
+ custom_css = """
145
+ <style>
146
+ .textbox-question {
147
+ background-color: #E8F0FE !important; /* Light blue background */
148
+ }
149
+ .textbox-answer {
150
+ background-color: #F1F8E9 !important; /* Light green background */
151
+ }
152
+ </style>
153
+ """
154
+
155
  theme = gr.themes.Base().set(
156
  background_fill_primary='#AFC9AD', # Light cyan background
157
  background_fill_primary_dark='#AFC9AD', # Dark teal background
 
168
 
169
  # Setup the Gradio Blocks interface with custom layout components
170
  with gr.Blocks(theme=theme) as demo:
171
+ gr.HTML(custom_css)
172
  gr.Image(display_image(), show_label = False, show_share_button = False, show_download_button = False)
173
  gr.Markdown(welcome_message) # Display the formatted welcome message
174
  with gr.Row():