Menu

#41 24 bit (true color) color support

open
nobody
None
5
2015-02-16
2014-07-06
No

Here's a test case

printf "\x1b[38;2;255;100;0mTRUECOLOR\x1b[0m\n"

or http://github.com/robertknight/konsole/tree/master/tests/color-spaces.pl

or https://git.gnome.org/browse/vte/tree/perf/img.sh?h=vte-0-36

According to Wikipedia[1], this is only supported by xterm and konsole.

It's a common confusion about terminal colors... Actually we have this:

plain ascii
ansi escape codes (16 color codes with bold/italic and background)
256 color palette (216 colors+16gray + ansi) (colors are 24bit)
24bit true color (8*8*8 colors (aka 16 milion)

The 256 color palete is configured at start, and it's a 666 cube of
colors, each of them defined as a 24bit (888 rgb) color.

This means that current support can only display 256 different colors
in the terminal, while truecolor means that you can display 16 milion
different colors at the same time.

Truecolor escape codes doesnt uses a color palete. It just specifies the
color itself.

[1] https://en.wikipedia.org/wiki/ANSI_color

Here is another terminals discussions:

Now supporting truecolor:

Parsing ANSI color sequences, but approximating them to 256 palette:

Not supporting truecolor:

Here is another console programs discussion:

Discussion


Log in to post a comment.