Spaces:
Sleeping
Sleeping
Update src/pages/newprod.py
Browse files- src/pages/newprod.py +14 -0
src/pages/newprod.py
CHANGED
@@ -28,6 +28,20 @@ font_main = "Inter, Segoe UI, Arial, sans-serif"
|
|
28 |
|
29 |
st.set_page_config(page_title="🚀 New Launch Studio", layout="wide", initial_sidebar_state="collapsed")
|
30 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
31 |
# --- STYLE ---
|
32 |
st.markdown(f"""
|
33 |
<style>
|
|
|
28 |
|
29 |
st.set_page_config(page_title="🚀 New Launch Studio", layout="wide", initial_sidebar_state="collapsed")
|
30 |
|
31 |
+
# Set dark theme programmatically
|
32 |
+
st.markdown(
|
33 |
+
"""
|
34 |
+
<style>
|
35 |
+
body, .main, .stApp {
|
36 |
+
background: #1b2230 !important;
|
37 |
+
color: #fff !important;
|
38 |
+
}
|
39 |
+
</style>
|
40 |
+
""",
|
41 |
+
unsafe_allow_html=True
|
42 |
+
)
|
43 |
+
|
44 |
+
|
45 |
# --- STYLE ---
|
46 |
st.markdown(f"""
|
47 |
<style>
|