Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -108,7 +108,7 @@ def query_model(question):
|
|
108 |
|
109 |
# Define the welcome message and specific topics the chatbot can provide information about
|
110 |
welcome_message = """
|
111 |
-
<span style="color:#
|
112 |
|
113 |
## Your AI-driven assistant for all videogame related queries. Created by Perennial, Jiya, and Ly-Ly of the 2024 Kode With Klossy San Francisco Camp.
|
114 |
"""
|
@@ -122,17 +122,17 @@ topics = """
|
|
122 |
🕹️ Feeling
|
123 |
"""
|
124 |
theme = gr.themes.Base().set(
|
125 |
-
background_fill_primary='#
|
126 |
-
background_fill_primary_dark='#
|
127 |
-
background_fill_secondary='#
|
128 |
-
background_fill_secondary_dark='#
|
129 |
-
border_color_accent='#
|
130 |
-
border_color_accent_dark='#
|
131 |
-
border_color_accent_subdued='#
|
132 |
-
border_color_primary='#
|
133 |
-
block_border_color='#
|
134 |
-
button_primary_background_fill='#
|
135 |
-
button_primary_background_fill_dark='#
|
136 |
)
|
137 |
|
138 |
# Setup the Gradio Blocks interface with custom layout components
|
|
|
108 |
|
109 |
# Define the welcome message and specific topics the chatbot can provide information about
|
110 |
welcome_message = """
|
111 |
+
<span style="color:#846A6A; font-size:90px; font-weight:bold">🎮 Welcome to Plai!</span>
|
112 |
|
113 |
## Your AI-driven assistant for all videogame related queries. Created by Perennial, Jiya, and Ly-Ly of the 2024 Kode With Klossy San Francisco Camp.
|
114 |
"""
|
|
|
122 |
🕹️ Feeling
|
123 |
"""
|
124 |
theme = gr.themes.Base().set(
|
125 |
+
background_fill_primary='#FAB9CB', # Light pink background
|
126 |
+
background_fill_primary_dark='#FFF2F1', # Light pink background
|
127 |
+
background_fill_secondary='#FFF2F1', # Light orange background
|
128 |
+
background_fill_secondary_dark='#FFF2F1', # Dark orange background
|
129 |
+
border_color_accent='#FFF2F1', # Accent border color
|
130 |
+
border_color_accent_dark='#FFF2F1', # Dark accent border color
|
131 |
+
border_color_accent_subdued='#FFF2F1', # Subdued accent border color
|
132 |
+
border_color_primary='#FFF2F1', # Primary border color
|
133 |
+
block_border_color='#FFF2F1', # Block border color
|
134 |
+
button_primary_background_fill='#FFF2F1', # Primary button background color
|
135 |
+
button_primary_background_fill_dark='#FFF2F1', # Dark primary button background color
|
136 |
)
|
137 |
|
138 |
# Setup the Gradio Blocks interface with custom layout components
|