Thanks a lot!
That push was all I needed. I downloaded a developer tool, viewed the CSS from there and was able to identify two strings of text that had that orange color to them:
.entry-content a:hover {
color: #f47e3c;
}
and
a:hover,
a:focus,
a:active {
color: #f47e3c;
}
After they were changed, it worked!
Thanks for the tip 🙂