Changing font color of HTML Symbol
This appears to be an issue with Chrome, but you can workaround it using text-shadow
...
span {
color: transparent;
text-shadow: 0 0 0 rgb(0, 128, 0);
}
<span>⚫</span>
FIX:
<span style="color: rgb(42, 170, 82);">⚫</span>
<span style="color: transparent; text-shadow: 0 0 0 green; ">⚫</span>
<span style="color: transparent; text-shadow: 0 0 0 rgb(42, 170, 82); ">⚫</span>
This works for Chrome hope it helps you bro.