Is there a way to darken striped rows in tables?

Hi y’all,

I’ve been told by my team that the stripes on the tables aren’t dark enough to make a difference looking at them:

Is there a way to darken the dark-striped rows using custom CSS?

Thank you,

Shawn

1 Like

You can try something like this.

tr[data-style="striped"]:nth-child(2n) {
background-color: rgba(51, 51, 51, 0.2) !important;
}
3 Likes

This worked like magic - thank you! : )

1 Like

Please feel free to adjust the color as you need, I was simply using the same rgba as the native setup, just changed the opacity a bit (the last parameter).

1 Like