emoji icon set

May 10, 2020
3 minutes to read

Before emojis, we had emoticons (dating back all the way to 1881). Then kaomojis took over our forums and online communities. Now, as 92% of all people online use emojis, they’re also becoming more and more common in web design trends.

Whilst you can swing for colourful emojis like everyone else in the webosphere, today I’d want to show a neat trick of making native emojis solid-coloured or keeping only their outline. It might not be the most practical knowledge, but maybe it could jive with your next project’s visual vibe or grant some minimalism, to keep the design a little more grounded and prevent it from being too colourful.

We can achieve it with just a couple lines of CSS! The benefits here might be that

  1. they’re “installed” for everyone, so there’s nothing to download (performance ⚡️)
  2. you don’t need to add Yet Another Dependency™ to your project (great for prototyping)
  3. the selection is huge and growing + almost all users find the figures already familiar
  4. it’s a bit of a different look to regular emojis and could look rather tasteful when done right
  5. you won’t have to properly title all the icons you use, since emojis are quite accessible out-of-the-box.

Side note: Perkins has some pretty great articles that give you amazing insights on how various people use software that you build - check them out!

All we need to get started are 2 lines of CSS! (Note that a separate class or data-emoji might be more aligned with best practises, but I like the way <span emoji> feels when I write it)

span[emoji] {
  color: transparent;
  text-shadow: 0 0 #cecece;
}
<div>
  <span emoji>🐱</span>
  <span emoji></span>
  <span emoji>👉</span>
  <span emoji>💎</span>
  <span emoji>👌</span>
</div>

This will get us solid-filled icons 👇

🐱 👉 💎 👌

We can now take this one step further by giving them an outline with text-shadow.

.stroke {
  text-shadow:
    0 0 white,
    -1px -1px 0 #4a4a4a,
    1px -1px 0 #4a4a4a,
    -1px 1px 0 #4a4a4a,
    1px 1px 0 #4a4a4a;
}
🐱 👉🏿 💎 👌

The only odd part is that when a user selects some part of the text that contains this emoji, it’ll display the emoji in its original coloured form. To work around this (if you’d like) you should either

Highlight this block for a demo of all three:
A) 💩
B) 💩
C) 💩

That’s all there is to it. Hope you can put this to use in your next project. As always…