Reputation: 14032
How can I change the default blue color of animations in Hover.css
for instance in Border Transitions, the Underline From Center effect with orange
Upvotes: 0
Views: 295
Reputation: 511
This Code Color All Hover.css into Orange
[class^="hvr-"]::before {
background: orange;
}
Upvotes: 0
Reputation: 335
This should work, overwrite (add to existing) class:
.hvr-underline-from-center::before {
background: orange;
}
Upvotes: 1