Update app.py
Browse files
app.py
CHANGED
@@ -121,7 +121,7 @@ topics = """
|
|
121 |
|
122 |
🕹️ Feeling
|
123 |
"""
|
124 |
-
|
125 |
background_fill_primary='#FAB9CB', # Light pink background
|
126 |
background_fill_primary_dark='#AFC9AD', # Dark teal background
|
127 |
background_fill_secondary='#FFCCBC', # Light orange background
|
@@ -136,7 +136,7 @@ topics = """
|
|
136 |
)
|
137 |
|
138 |
# Setup the Gradio Blocks interface with custom layout components
|
139 |
-
with gr.Blocks(theme=
|
140 |
gr.Image("Video Game Banner.gif", show_label = False, show_share_button = False, show_download_button = False)
|
141 |
gr.Markdown(welcome_message) # Display the formatted welcome message
|
142 |
with gr.Row():
|
|
|
121 |
|
122 |
🕹️ Feeling
|
123 |
"""
|
124 |
+
theme = gr.themes.Base().set(
|
125 |
background_fill_primary='#FAB9CB', # Light pink background
|
126 |
background_fill_primary_dark='#AFC9AD', # Dark teal background
|
127 |
background_fill_secondary='#FFCCBC', # Light orange background
|
|
|
136 |
)
|
137 |
|
138 |
# Setup the Gradio Blocks interface with custom layout components
|
139 |
+
with gr.Blocks(theme=theme) as demo:
|
140 |
gr.Image("Video Game Banner.gif", show_label = False, show_share_button = False, show_download_button = False)
|
141 |
gr.Markdown(welcome_message) # Display the formatted welcome message
|
142 |
with gr.Row():
|