Spaces:
Sleeping
Sleeping
Add comic sans
Browse files
app.py
CHANGED
|
@@ -294,10 +294,10 @@ def Page():
|
|
| 294 |
avatar="https://avatars.githubusercontent.com/u/127238744?v=4" if item["role"] == "user" else "https://avatars.githubusercontent.com/u/784313?v=4",
|
| 295 |
avatar_background_color="#33cccc" if item["role"] == "assistant" else "#ff991f",
|
| 296 |
border_radius="20px",
|
| 297 |
-
style={"color":"red!important","background-color":"orange!important"} if item["role"] == "user" else {"color":"red!important", "background-color":"aqua!important"},
|
| 298 |
):
|
| 299 |
solara.Markdown(
|
| 300 |
item["content"],
|
| 301 |
-
style={"color":"green!important","backgound-color":"transpartent!important"} if item["role"] == "user" else {"color":"blue!important"}
|
| 302 |
)
|
| 303 |
ChatInput(send_callback=send, style={"position": "fixed", "bottom": "3rem", "width": "60%", "color":"green!important", "background-color":"red!important"})
|
|
|
|
| 294 |
avatar="https://avatars.githubusercontent.com/u/127238744?v=4" if item["role"] == "user" else "https://avatars.githubusercontent.com/u/784313?v=4",
|
| 295 |
avatar_background_color="#33cccc" if item["role"] == "assistant" else "#ff991f",
|
| 296 |
border_radius="20px",
|
| 297 |
+
style={"color":"red!important","background-color":"orange!important","font-family":"Comic Sans MS"} if item["role"] == "user" else {"color":"red!important", "background-color":"aqua!important","font-family":"Comic Sans MS"},
|
| 298 |
):
|
| 299 |
solara.Markdown(
|
| 300 |
item["content"],
|
| 301 |
+
style={"color":"green!important","backgound-color":"transpartent!important","font-family":"Comic Sans MS"} if item["role"] == "user" else {"color":"blue!important","font-family":"Comic Sans MS"}
|
| 302 |
)
|
| 303 |
ChatInput(send_callback=send, style={"position": "fixed", "bottom": "3rem", "width": "60%", "color":"green!important", "background-color":"red!important"})
|