Spaces:
Sleeping
Sleeping
Update src/pages/persona.py
Browse files- src/pages/persona.py +15 -0
src/pages/persona.py
CHANGED
@@ -42,6 +42,21 @@ st.markdown(
|
|
42 |
"<h1 style='color:#00fff7;font-size:2.6rem;font-weight:900;letter-spacing:0.01em;margin-bottom:5px;'>🎭 Persona Lab</h1>",
|
43 |
unsafe_allow_html=True
|
44 |
)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
45 |
st.markdown(
|
46 |
f"""
|
47 |
<div style="font-size:1.21rem; color:#AC7CFF; font-weight:600; margin-top:-13px; margin-bottom:14px; line-height:1.5;">
|
|
|
42 |
"<h1 style='color:#00fff7;font-size:2.6rem;font-weight:900;letter-spacing:0.01em;margin-bottom:5px;'>🎭 Persona Lab</h1>",
|
43 |
unsafe_allow_html=True
|
44 |
)
|
45 |
+
|
46 |
+
# Set dark theme programmatically
|
47 |
+
st.markdown(
|
48 |
+
"""
|
49 |
+
<style>
|
50 |
+
body, .main, .stApp {
|
51 |
+
background: #1b2230 !important;
|
52 |
+
color: #fff !important;
|
53 |
+
}
|
54 |
+
</style>
|
55 |
+
""",
|
56 |
+
unsafe_allow_html=True
|
57 |
+
)
|
58 |
+
|
59 |
+
|
60 |
st.markdown(
|
61 |
f"""
|
62 |
<div style="font-size:1.21rem; color:#AC7CFF; font-weight:600; margin-top:-13px; margin-bottom:14px; line-height:1.5;">
|