Add border around font-awesome (v5) icon
Please make stroke colour same as the icon background icon, then it will visible like the icon stroke is reduce.
Please try to use below style.
-webkit-text-stroke:4px rgb(190, 53, 48)
I had to dissect the internals of font-awesome.
.fa-music g g path {
stroke: black;
stroke-width: 10;
}
The new FontAwesome way would be layers: https://fontawesome.com/how-to-use/svg-with-js#layering
<script defer src="https://use.fontawesome.com/releases/v5.0.6/js/all.js"></script>
<span class="fa-layers fa-fw fa-5x">
<i class="fas fa-circle" style="color:black"></i>
<i class="fas fa-circle" data-fa-transform="shrink-3" style="color:Tomato"></i>
<i class="fa-inverse fas fa-female" data-fa-transform="shrink-6"></i>
</span>