I would like to change the color of the Font Awesome Facebook icon. If I do it with background-color
:
body {
font-size: 5em;
background: #555
}
.fa-facebook-square {
color: blue;
background-color: #fff;
}
<link href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet" />
<i class="fa fa-facebook-square"></i>
It adds white around the edges of the blue 'background' of the Facebook logo, which I don't want.
Is there a simple solution to color only the "f" in the icon so that the color around the edges stays transparent?