Files
documentation/node_modules/skin-tone
2024-03-22 03:47:51 +05:30
..
2024-03-22 03:47:51 +05:30
2024-03-22 03:47:51 +05:30
2024-03-22 03:47:51 +05:30
2024-03-22 03:47:51 +05:30
2024-03-22 03:47:51 +05:30

skin-tone Build Status

Change the skin tone of an emoji 👌👌🏻👌🏼👌🏽👌🏾👌🏿

The Fitzpatrick scale is used to specify skin tones for emoji characters which represent humans.

Install

$ npm install skin-tone

Usage

const skinTone = require('skin-tone');

skinTone('👍', 'brown');
//=> '👍🏾'

skinTone('👍', 'white');
//=> '👍🏻'

// can also remove skin tone
skinTone('👍🏾', 'none');
//=> '👍'

// just passes it through when not supported
skinTone('🦄', 'darkBrown');
//=> '🦄'

API

skinTone(emoji, tone)

emoji

Type: string

Emoji to modify.

tone

Type: 'none' | 'white' | 'creamWhite' | 'lightBrown' | 'brown' | 'darkBrown'

Skin tone to use for emoji.

  • 'none' : (Removes skin tone)
  • 'white' : 🏻 (Fitzpatrick Type-12)
  • 'creamWhite' : 🏼 (Fitzpatrick Type-3)
  • 'lightBrown' : 🏽 (Fitzpatrick Type-4)
  • 'brown' : 🏾 (Fitzpatrick Type-5)
  • 'darkBrown' : 🏿 (Fitzpatrick Type-6)

Skin tone to use for emoji.

License

MIT © Sindre Sorhus