You can try using a CSS selector like this
.su-tabs-nav span:nth-of-type(1) {background-color:pink;}
.su-tabs-nav span:nth-of-type(2) {background-color:red;}
.su-tabs-nav span:nth-of-type(3) {background-color:blue;}
You should be able to apply a hover to that as well…I think it’s
.su-tabs-nav span:hover:nth-of-type(whatever number)