ASNVS commited on
Commit
0c18d60
·
verified ·
1 Parent(s): 0938142

the update

Browse files
Files changed (1) hide show
  1. app.py +5 -1
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