Checking how many colors my terminal emulator supports

Is there a reliable way to check how many colors my terminal emulator supports?

If echo $TERM prints xterm, does that unequivocally tell me how many colors my terminal emulator supports? How could I check this information reliably?

Answers:

Thank you for visiting the Q&A section on Magenaut. Please note that all the answers may not help you solve the issue immediately. So please treat them as advisements. If you found the post helpful (or not), leave a comment & I’ll get back to you as soon as possible.

Method 1

The value of $TERM does not give much information about the number of supported colors. Many terminals advertise themselves as xterm, and might support any number of colors (2, 8, 16, 88 and 256 are common values).

You can query the value of each color with the OSC 4 ; c ; ? BEL control sequence. If the color number c is supported, and if the terminal understands this control sequence, the terminal will answer back with the value of the color. If the color number is not supported or if the terminal doesn’t understand this control sequence, the terminal answers nothing. Here’s a bash/zsh snippet to query whether color 42 is supported (redirect to/from the terminal if necessary):

printf 'e]4;%d;?a' 42
if read -d $'a' -s -t 1; then … # color 42 is supported

Among popular terminals, xterm and terminals based on the VTE library (Gnome-terminal, Terminator, Xfce4-terminal, …) support this control sequence; rxvt, konsole, screen and tmux don’t.

I don’t know of a more direct way.

Method 2

You can use

$ tput colors

On my debian install tput is part of the ncurses-bin package which is installed by default.

Method 3

There is a perl script, 256colors2.pl, that will display all the colours on your terminal.


All methods was sourced from stackoverflow.com or stackexchange.com, is licensed under cc by-sa 2.5, cc by-sa 3.0 and cc by-sa 4.0

0 0 votes
Article Rating
Subscribe
Notify of
guest

0 Comments
Oldest
Newest Most Voted
Inline Feedbacks
View all comments
0
Would love your thoughts, please comment.x
()
x