table tr:nth-child(odd)
{
    background-color: color-mix(in oklab, #79B6D8, white 80%);
}

table tr:nth-child(odd):hover {
    background-color: color-mix(in oklab, #79B6D8, white 80%);
}

table tr:nth-child(even)
{
    background-color: color-mix(in oklab, #4A6275, white 80%);
}

table tr:nth-child(even):hover {
    background-color: color-mix(in oklab, #4A6275, white 80%);
}