Changing table alternate color

Is it possible to change the alternating colors of the a table from White / Grey to White / Blue ?

If so, could someone please tell how or provide a code to do such?

Thank you… JON

Thank you GPT-4

/* Change the background color of even rows /
.kn-table tbody tr:nth-child(even) {
background-color: #ADD8E6; /
Light blue */
}

/* Change the background color of odd rows /
.kn-table tbody tr:nth-child(odd) {
background-color: #87CEEB; /
Sky blue */
}

Make sure to turn off “Use alternate background colors for grid rows” in Knack settings