update first table
Browse files
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,
|