Color in the Unicode standard?

From https://docs.microsoft.com/en-us/typography/opentype/spec/otff#tables-related-to-color-fonts:

Tables Related to Color Fonts

  • COLR: Color table
  • CPAL: Color palette table
  • CBDT: Color bitmap data
  • CBLC: Color bitmap location data
  • sbix: Standard bitmap graphics
  • SVG : The SVG (Scalable Vector Graphics) table

In short,

  • CBDT/CBLC contain colored bitmaps (in PNG). They were proposed by Google.

  • sbix contains colored bitmaps (in JPG, PNG, or TIFF). It was proposed by Apple.

  • COLR defines one or more accompanying color glyphs (in vector format) for each glyph, and when they are overlapped they create the final colored glyph. CPAL defines several color themes (dark-on-white, white-on-dark, ...) since COLR is merely paletted images. COLR/CPAL were proposed by Microsoft.

  • SVG was proposed by Mozilla and Adobe. It may be used with CPAL.

FreeType (part of Android, iOS, and macOS) supports CBDT/CBLC and sbix since 2.5 and 2.5.1 (released in 2013), and COLR/CPAL since 2.10.0 (released in 2018). DirectWrite (part of Windows) supports COLR/CPSL since 8.1 (released in 2013) and all four above since 10 1607 (released in 2016).

Noto Color Emoji (default on Android) uses CBDT/CBLC. Segoe UI Emoji (default on Windows) uses COLR/CPAL. Apple Color Emoji (default on iOS and macOS) uses sbix.

See also https://en.wikipedia.org/wiki/OpenType#Color


From the Unicode FAQ: Emoji and Dingbats, bolding mine:

Q: What about characters whose name specifies a color?

A: Some of the characters from the core emoji sets have names that include a color term, for example, BLUE HEART or ORANGE BOOK. These color terms in the names do not imply any requirement about how a character must be presented; they are intended only to help identify the corresponding character in the core emoji sets. Even names of symbols such as BLACK MEDIUM SQUARE or WHITE MEDIUM SQUARE are not meant to indicate that the corresponding character must be presented in black or white, respectively; rather, the use of black and white is generally just to contrast filled versus outline shapes, or a darker color fill versus a lighter color fill. [PE]

There was quite a bit of debate on the mailing lists at the time on whether these should be named with colors, or generic names that didn't reference color, and whether that was setting a bad precendent. The Emoji Symbols: Background Data includes "old names" such as APPLE-1 instead of RED APPLE and BOOK-3 instead of ORANGE BOOK.

The final names use this principle:

Symbols with an inherent color shall bear this color in their name unless the entity denoted by the name has identifies the color anyway (e.g., a BANANA is uniquely yellow and therefore does not need to be called YELLOW BANANA, while a RED APPLE must be named so as there are also green apples).


Unicode 6.1 have a feature to change glyph for the same unicode code point, by specifying Variation Selector(U+FE0x).

For example, left-pointing triangle(@"\U000025C0", ◀) can be colored by adding "\U0000FE0F" ◀️* and non-colored by adding "\U0000FE0E" as suffix. (@"\U000025C0\U0000FE0E", ◀︎**).

*looks default on Mac OS X 10.8
**This is default on Linux.

Tags:

Unicode