CarisMu commited on
Commit
2ecaabf
1 Parent(s): 6a9172e

update first table

Browse files
Files changed (1) hide show
  1. main.py +2 -6
main.py CHANGED
@@ -587,13 +587,9 @@ styled_table = (
587
  )
588
  .apply(
589
  lambda x: [
590
- "background-color: #E1EEDB"
591
  if i == 0
592
- else (
593
- "background-color: rgb(237, 242, 251)"
594
- if i % 2 == 0
595
- else "background-color: white"
596
- )
597
  for i in range(len(x))
598
  ],
599
  axis=0,
 
587
  )
588
  .apply(
589
  lambda x: [
590
+ "background-color: #E1EEDB" # Green background for row 0
591
  if i == 0
592
+ else "background-color: rgb(237, 242, 251)" # Blue background for other rows
 
 
 
 
593
  for i in range(len(x))
594
  ],
595
  axis=0,