ginipick commited on
Commit
83e2123
·
verified ·
1 Parent(s): d41568a

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +16 -1
app.py CHANGED
@@ -279,7 +279,7 @@ def create_ui():
279
  }
280
  .chatbot .message, .chatbot .user-message, .chatbot .bot-message {
281
  background-color: transparent !important;
282
- color: #000000 !important;
283
  padding: 10px 15px;
284
  margin: 5px 0;
285
  border-radius: 0;
@@ -306,11 +306,26 @@ def create_ui():
306
  .chatbot p, .chatbot span, .chatbot div {
307
  background-color: transparent !important;
308
  margin: 5px 0;
 
309
  }
310
  .chatbot * {
311
  word-wrap: break-word !important;
312
  white-space: pre-wrap !important;
313
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
314
  """
315
 
316
  with gr.Blocks(theme="Nymbo/Nymbo_Theme", css=css) as demo:
 
279
  }
280
  .chatbot .message, .chatbot .user-message, .chatbot .bot-message {
281
  background-color: transparent !important;
282
+ color: #1a1a1a !important;
283
  padding: 10px 15px;
284
  margin: 5px 0;
285
  border-radius: 0;
 
306
  .chatbot p, .chatbot span, .chatbot div {
307
  background-color: transparent !important;
308
  margin: 5px 0;
309
+ color: #1a1a1a !important;
310
  }
311
  .chatbot * {
312
  word-wrap: break-word !important;
313
  white-space: pre-wrap !important;
314
  }
315
+ .chatbot h1, .chatbot h2, .chatbot h3, .chatbot h4, .chatbot h5, .chatbot h6 {
316
+ color: #0056b3 !important;
317
+ }
318
+ .chatbot a {
319
+ color: #0056b3 !important;
320
+ text-decoration: underline !important;
321
+ }
322
+ .chatbot ul, .chatbot ol {
323
+ color: #1a1a1a !important;
324
+ padding-left: 20px !important;
325
+ }
326
+ .chatbot li {
327
+ margin-bottom: 5px !important;
328
+ }
329
  """
330
 
331
  with gr.Blocks(theme="Nymbo/Nymbo_Theme", css=css) as demo: