the update
Browse files
app.py
CHANGED
|
@@ -249,16 +249,20 @@ llm = ChatGoogleGenerativeAI(
|
|
| 249 |
temperature=0.5
|
| 250 |
)
|
| 251 |
|
| 252 |
-
# Custom CSS for background color
|
| 253 |
st.markdown(
|
| 254 |
"""
|
| 255 |
<style>
|
| 256 |
.stApp {
|
| 257 |
background-color: #efefef !important;
|
|
|
|
| 258 |
}
|
| 259 |
iframe {
|
| 260 |
border: none !important;
|
| 261 |
}
|
|
|
|
|
|
|
|
|
|
| 262 |
</style>
|
| 263 |
""",
|
| 264 |
unsafe_allow_html=True
|
|
|
|
| 249 |
temperature=0.5
|
| 250 |
)
|
| 251 |
|
| 252 |
+
# Custom CSS for background color and text color
|
| 253 |
st.markdown(
|
| 254 |
"""
|
| 255 |
<style>
|
| 256 |
.stApp {
|
| 257 |
background-color: #efefef !important;
|
| 258 |
+
color: black !important;
|
| 259 |
}
|
| 260 |
iframe {
|
| 261 |
border: none !important;
|
| 262 |
}
|
| 263 |
+
h1, h2, h3, h4, h5, h6, p, div, span, label {
|
| 264 |
+
color: black !important;
|
| 265 |
+
}
|
| 266 |
</style>
|
| 267 |
""",
|
| 268 |
unsafe_allow_html=True
|