A couple problems we ran into with this solution:
We had to use “!important” in the code, otherwise the changes didn’t work. Also, this change caused the tab title text color to turn blue as well, so we had to add “p” to the code to specify that the color change should only occur in the text below.
End result, which is working at the moment:
.ui-widget-content p a {
color: #1E73BE !important;
}
.ui-widget-content p a:hover {
color: #333 !important;
}
(the first hexdec code is our blue link text color)
Also, we noticed while we were making these updates that the bottom Save Changes button in the General Options was not saving. The top one did though.
We look forward to the next update.