JSPM

postcss-color-emoji

4.0.0
  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 238
  • Score
    100M100P100Q83421F
  • License MIT

Emoji in full color

Package Exports

  • postcss-color-emoji

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (postcss-color-emoji) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

PostCSS Color Emoji PostCSS

✏ Emoji in full color!

NPM Version Build Status Dependency Status

Depending on the font, some emojis are rendered as their text variation instead of the colored version you know and love. This PostCSS plugin gives you full access to the system emojis on macOS, Windows, and Linux.

/* Input */
.example {
  font-family: color-emoji;
}
/* Output */
.example {
  font-family: 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
}

Check out the visual test.

Install

# npm
npm install --save-dev postcss postcss-color-emoji

# or yarn
yarn add --dev postcss postcss-color-emoji

Usage

Add it to your PostCSS work-flow, whatever way you choose to.

// Using a postcss.config.js
const colorEmoji = require('postcss-color-emoji');

module.exports = {
  plugins: [
    colorEmoji
  ]
};

Then use the color-emoji font-family name where ever you need it.

.one {
  font-family: sans-serif, color-emoji;
}
/* Using custom properties */
:root {
  --emoji: color-emoji;
}

.two {
  font: var(--emoji);
}

Credits

License