Hi, Hal!
Thank you for asking your question about the color palette change after the update to your Hydra theme. I’m sorry to see this has caused an issue. If you are able to navigate to the Colors Tab in the Customizer, you should be able to update the colors there automatically.
Although I recommend making changes from the Colors Tab, you may also use the Custom HTML/CSS Editor to enter the following code to modify the color of the Titles on your website:
.entry-title a:hover {
color: #8A2BE2;
text-decoration: none;
text-shadow: 0.1em 0.1em 0.05em #333;
!important;
}
.entry-title a:focus {
color: #fff;
text-decoration: none;
text-shadow: 0.1em 0.1em 0.05em #333;
!important;
}
.entry-title a {
color: #333;
text-decoration: none;
text-shadow: 0.1em 0.1em 0.05em #333;
!important;
}
This should allow you to make adjustments to the color displayed by default and then also the color when the hyperlink is hovered over. I hope this helps!
Sincerely,
Carlos E