Spaces:
Runtime error
Runtime error
ThisIs-Developer
commited on
Commit
•
610fc2c
1
Parent(s):
9f62d28
Update app.py
Browse files
app.py
CHANGED
@@ -86,9 +86,10 @@ def main():
|
|
86 |
height: 400px;
|
87 |
overflow-y: auto;
|
88 |
padding: 10px;
|
|
|
89 |
}
|
90 |
.user-bubble {
|
91 |
-
background-color: #
|
92 |
align-self: flex-end;
|
93 |
border-radius: 10px;
|
94 |
padding: 8px;
|
@@ -97,7 +98,7 @@ def main():
|
|
97 |
word-wrap: break-word;
|
98 |
}
|
99 |
.bot-bubble {
|
100 |
-
background-color: #
|
101 |
align-self: flex-start;
|
102 |
border-radius: 10px;
|
103 |
padding: 8px;
|
|
|
86 |
height: 400px;
|
87 |
overflow-y: auto;
|
88 |
padding: 10px;
|
89 |
+
color: white; /* Font color */
|
90 |
}
|
91 |
.user-bubble {
|
92 |
+
background-color: #1f1f1f; /* Darker background color */
|
93 |
align-self: flex-end;
|
94 |
border-radius: 10px;
|
95 |
padding: 8px;
|
|
|
98 |
word-wrap: break-word;
|
99 |
}
|
100 |
.bot-bubble {
|
101 |
+
background-color: #363636; /* Slightly lighter background color */
|
102 |
align-self: flex-start;
|
103 |
border-radius: 10px;
|
104 |
padding: 8px;
|