bgamazay commited on
Commit
dd445b6
·
verified ·
1 Parent(s): 352fe6c

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +10 -1
app.py CHANGED
@@ -304,15 +304,24 @@ custom_css = """
304
  background-color: #121212;
305
  color: #e0e0e0;
306
  }
 
 
 
 
307
  .data-table thead {
308
  background-color: #333;
309
  }
 
310
  .data-table th {
311
- color: #e0e0e0;
312
  }
313
  .data-table td {
314
  color: #e0e0e0;
315
  }
 
 
 
 
316
  /* Non-header links in dark mode */
317
  a:not(.header-link) {
318
  color: #3fa45bff !important;
 
304
  background-color: #121212;
305
  color: #e0e0e0;
306
  }
307
+ /* Make header links white */
308
+ .header-link {
309
+ color: white !important;
310
+ }
311
  .data-table thead {
312
  background-color: #333;
313
  }
314
+ /* Make table header text black in dark mode */
315
  .data-table th {
316
+ color: black !important;
317
  }
318
  .data-table td {
319
  color: #e0e0e0;
320
  }
321
+ /* Make callout text black */
322
+ .info-callout {
323
+ color: black !important;
324
+ }
325
  /* Non-header links in dark mode */
326
  a:not(.header-link) {
327
  color: #3fa45bff !important;