Data Table Changing Theme IOS

The suggested CSS doesn’t provide acceptable results. I decided to just go with the following to override whatever theme the user picked for the scrollbody:

.table-striped tbody tr:nth-of-type(odd) {
    background-color: #888 !important;
    color: #f9f9f9 !important;
}
.table-striped tbody tr:nth-of-type(even) {
    background-color: #999 !important;
    color: #f9f9f9 !important;
}

If you’re not using a striped table, then you’ll be changing the .table class similarly…