I am having a problem with font awesome icons change it's color on hover without animation. I want the icon change it's color to change indigo, blue and red when user hovers on it without animation of appearing colored icon appear from bottom (forgot the animation type name).
<div class="clearfix">
<a href="#" class="btn btn-icon btn-social btn-sm white no-radius no-borders">
<i class="fa fa-facebook" aria-hidden="true"></i>
<i class="fa fa-facebook indigo" aria-hidden="true"></i>
</a>
<a href="#" class="btn btn-icon btn-social btn-sm white no-radius no-borders">
<i class="fa fa-twitter" aria-hidden="true"></i>
<i class="fa fa-twitter blue" aria-hidden="true"></i>
</a>
<a href="#" class="btn btn-icon btn-social btn-sm white no-radius no-borders">
<i class="fa fa-google-plus" aria-hidden="true"></i>
<i class="fa fa-google-plus red" aria-hidden="true"></i>
</a>
</div>
I would really appreciate your help.
Note: I have already checked Change color when hover a font awesome icon?