手の肌の色でのログイン/サインアップ

How can I change the skin color of the hand on the login and signup screens? Thanks in advance for your help.

「いいね!」 1

You cannot. The color is randomized, so you’ll get a different skin tone most times you refresh the page.

「いいね!」 8

Can we eliminate the hand?

You can add this to your custom CSS to hide the waving hand:

.login-welcome-header > .waving-hand {
    visibility: hidden;
}
「いいね!」 4

The waving-hand can be replaced in Chrome and Edge using:

.login-welcome-header > .waving-hand {
     content: url($my_image);
}

It will not work in Firefox. Replacing “content” with “background” does not work either.

Handlebars does not seem to work either since it is an ember and is an additive rather than subtractive or replace process?