Hey Rick,
Thanks for creating a support ticket here. As I re-read my response to your email, I missed a critical word: There is no option of adding colors to tabs.
However, as I said, we can do this with custom CSS.
I might be mistaken but you’re only trying to change the color of the tab’s title, right?
Here are a few examples.
/* Change all tabs to black backgrounds, aliceblue text */
.wc-tabs li a {
color: aliceblue;
background-color: black;
}
/* Change the tab titled "Saved Tab 1"*/
#tab-title-saved-tab-1 > a {
color: red;
background-color: black;
}
/* Change WooCommerce's default Reviews tab*/
#tab-title-reviews > a {
color: blanchedalmond;
background-color: black;
}
Different themes might handle the tab layouts differently so please send over a URL to one of your products if you can.
Cheers,
Kevin.