Colored emojis?

Hi,

Emojis aren't very pretty in Joplin. They're all black.
For example, this a how the newspaper emoji :newspaper: appears to me.

I'm using Joplin 1.2.4 with Fedora; but the situation is the same with stable release.

Is it a font setting problem? In options, "Editor font family" is just empty.

Thanks! :wave:

By putting the following code in userchrome.css, I get colored emojis in Notes List and preview

input {
  font-family: "Arial", "Noto Color Emoji";
 }
 
 div.item-list.note-list div a span {
   font-family: "Roboto", "Noto Color Emoji";
 }

But I don't really know I to get this in CodeMirror editor

In Ubuntu you must install the Google Noto Color Emoji fonts

sudo apt-get install fonts-noto-color-emoji

Restart Joplin and you're good :wink:

image

1 Like