This was brought up in another thread. This and other some other emojis do not translate well to dark backgrounds, such as night theme on this site. I’m not necessarily looking for a specific solution for dev.to, but I’d be curious to hear about possible approaches to this sort of thing.
For further actions, you may consider blocking this person and/or reporting abuse
Top comments (26)
Probably creating/using a specific icon set just for dark themes. I'm sure there are icon sets out there already that keep that restriction in mind.
This is probably the best approach, but I don't think there is an specific technical solution, it depends on the situation. Emojis and icons are easy, just a icon set like you said, but I'd like to see some examples, probably some of them are not that easy as change icon theme.
Are you able to target emojis with css to replace them with an icon?
Someone on Twitter had some input on this:
Not too technical, but if wanting to just use emojis. I use ✅ in dark themes.
Occam's Razor. "The simplest solution is almost always the best.”
This is actually good.
Clean solution: like Slack, they use their own emojis (and convert any font emojis into theirs).
Simple dirty hack: download the font that has the not good looking "✔️" and make the necessary changes and there you have your own font.
Coloured fonts, and emoji, are fundamentally broken in this regards and there is no solution to the problem. So I doubt it'll just be ✔️ that causes the problem.
I'm in favour of having fonts that provide only B&W glyphs, for use in places where the color is important.
But isn't ✔️ changing color in dark mode?
I discovered a lot of problems when doing mobile development, where I thin it was iPhone, wasn't even applying the opacity to coloured glyphs. Being able to apply colored tinting would be nice. It looks like most apps ignore the issues, since they don't have a way to solve it.
Just goes to show how different an emoji may look on different systems - for me, that was Windows 10 with Firefox.
Go to compart.com/en/unicode/search?q=ch... it is a list of unicode checkmarks(emoji is there too).
Once there, run this in the console to make all of them red or whatever color you like to see which change.
document.querySelectorAll('.char').forEach(element => element.style.color = 'red');
Edit: After that of course, pick one and switch it.
You could wrap all emoji in a span that gets some styles applied - maybe some basic padding and a white background?
Use SVG & dark mode/invert CSS.
My site has incompete & messy dark mode inverted media queries in the CSS that you can use to trigger SVG color changes. You can replace a couple of emojis or do a full set.
It's nice because you can control various elements of the emoji (shades/shapes/colors) & not rely on browser defaults which vary in quality a lot. It's also a nice distinguishing factor design wise.
Emojis also present accessibility issues (if I remember correctly) - could be wrong.
They are also pixel/don't scale well (see /zombie on my site) unlike SVG.
Animation too.
In fact I am going to replace all my emojis with SVG (I've just convinced myself here). There are better experts:
sarasoueidan.com/tags/svg/
Edit: there is also blend mode type methods out there.
Just don't support darkmode.
You must work for Slack 😆
Sorry that was a low blow, I still love Slack heh.
But this post has made me realize, maybe the reason slack hasn't released darkmode is because it's hard to get it right.
That train left the station already 😂
ಠ_ಠ
Put some kind of bright border around it? And do this consistency for all dark emojis, so that people get used to seeing it and it isn't jarring.
Here's a very rough concept, but it could be polished to look aesthetically pleasing: