https://developers.google.com/fonts/docs/material_icons
I tried to change the color of google Icon, however, it shows just black.
I added below code in header.php
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
And I added the below css code in style.css
.material-icons.orange600 { color: #FB8C00; }
And I used the below code in the page where I wanted to show the icon
<span class="material-icons orange600">face</span>
However, it just shows a black colored icon. It would be appreciated if you can help me.
By the way, I know that google now has introduced material symbol which I can customize a lot. However, on the description page, I can't find how can I change color.
Is there a way to change color?