I would like to change the tint of an emoji, e.g. if I have a yellow smiley, I would like to change its color tone so that it appears red.
This very naïve approach does not work:
.red-emoji {
font-size: 2em;
color: red;
}
<div class="red-emoji">this text is red, but that emoji is not → </div>
I would like to achieve this:
I made this image with Photoshop by adding an adjustment layer, I hope modern CSS has something similar (filters or something) that I can use to achieve this.