Spaces:
Sleeping
Sleeping
Update src/pages/prt111.py
Browse files- src/pages/prt111.py +14 -0
src/pages/prt111.py
CHANGED
@@ -207,6 +207,20 @@ def top_n_reviews(df, sentiment, n=3):
|
|
207 |
# --- LAYOUT ---
|
208 |
st.set_page_config(page_title="๐ Insight Engine", layout="wide", initial_sidebar_state="collapsed")
|
209 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
210 |
# --- AGE TITLE ---
|
211 |
st.markdown(
|
212 |
"<h1 style='color:#00fff7;font-size:2.65rem;font-weight:900;letter-spacing:0.01em;margin-bottom:5px;'>๐ Insight Engine</h1>",
|
|
|
207 |
# --- LAYOUT ---
|
208 |
st.set_page_config(page_title="๐ Insight Engine", layout="wide", initial_sidebar_state="collapsed")
|
209 |
|
210 |
+
# Set dark theme programmatically
|
211 |
+
st.markdown(
|
212 |
+
"""
|
213 |
+
<style>
|
214 |
+
body, .main, .stApp {
|
215 |
+
background: #1b2230 !important;
|
216 |
+
color: #fff !important;
|
217 |
+
}
|
218 |
+
</style>
|
219 |
+
""",
|
220 |
+
unsafe_allow_html=True
|
221 |
+
)
|
222 |
+
|
223 |
+
|
224 |
# --- AGE TITLE ---
|
225 |
st.markdown(
|
226 |
"<h1 style='color:#00fff7;font-size:2.65rem;font-weight:900;letter-spacing:0.01em;margin-bottom:5px;'>๐ Insight Engine</h1>",
|