How do I print a 256-colour test pattern in my terminal?
I want to check that my terminal correctly supports 256 colours.
18 Answers
256-colour test pattern
To get the below image, use:
curl -s | bashThe gist bash/zsh code is shellcheck clean, and also supports "Look Ma, no subprocesses!".
Alternatively, for a bash quicky:
for i in {0..255} ; do printf "\x1b[48;5;%sm%3d\e[0m " "$i" "$i" if (( i == 15 )) || (( i > 15 )) && (( (i-15) % 6 == 0 )); then printf "\n"; fi
doneFor total overkill, the granddaddy of the lot is terminal-colors, a 572-line script with multiple output formats.
You can also print a true color (24-bit) test pattern.
5I found a nice Python script for that on GitHub written by Justin Abrahms which also prints the hex codes of the colours.
Download the script to current working directory
wget give it execute permission
chmod +x colortest.pyRun it:
./colortest.pyHere's the script in full in case of link-rot:
#!/usr/bin/env python
# Ported to Python from
print "Color indexes should be drawn in bold text of the same color."
print
colored = [0] + [0x5f + 40 * n for n in range(0, 5)]
colored_palette = [ "%02x/%02x/%02x" % (r, g, b) for r in colored for g in colored for b in colored
]
grayscale = [0x08 + 10 * n for n in range(0, 24)]
grayscale_palette = [ "%02x/%02x/%02x" % (a, a, a) for a in grayscale
]
normal = "\033[38;5;%sm"
bold = "\033[1;38;5;%sm"
reset = "\033[0m"
for (i, color) in enumerate(colored_palette + grayscale_palette, 16): index = (bold + "%4s" + reset) % (i, str(i) + ':') hex = (normal + "%s" + reset) % (i, color) newline = '\n' if i % 6 == 3 else '' print index, hex, newline, 1 While not quite a "test pattern", I have xterm-color-chooser:
1Yet another script, written by me, is located in the VTE repository: .
It requires a window of 120-ish or more columns, but arranges the colors of the 6x6x6 cube nicely and compactly. The first digits of the indices are stripped for compactness, you can easily figure them out. The vertical bars provide you the ability to examine the exact RGB of the foreground color without antialiasing kicking in (as it does at the digits).
The top of the output (not shown in the screenshot below) demonstrates the craziness that goes around with the bold vs. bright ambiguity, namely that the boldness escape sequence combined with one of the legacy 8 colors' escape sequence for the foreground also switches to the bright counterpart color, whereas with the new style (256-color capable) escape sequences this is no longer the case, not even for the first 8 colors. At least that's how xterm and VTE (GNOME Terminal etc.) behave.
This screenshot shows about half of the output:
1Perhaps superfluous but I've written a version that prints the 256 colors using the background with automatic shell width detection so the colors are more easily visible.
#!/usr/bin/env python
from __future__ import print_function
import os
import shutil
import subprocess
def get_width(default=80): '''Attempt to detect console width and default to 80''' try: columns, rows = shutil.get_terminal_size() except AttributeError: try: _, columns = subprocess.check_output(['stty', 'size']).split() except OSError: columns = os.environ.get('COLUMNS', default) columns = int(columns) - 77 # Since we have 6 columns with 1 space on each side, we can increment the # size for every 12 extra columns return max(0, columns / 12)
# Loosely based on
colored = [0] + list(range(95, 256, 40))
colored_palette = [ (r, g, b) for r in colored for g in colored for b in colored
]
grayscale_palette = [(g, g, g) for g in range(8, 240, 10)]
esc = '\033['
# Reset all colors sequence
reset = esc + '0m'
# Regular color
normal = esc + '38;5;{i}m'
# Bold color
bold = esc + '1;' + normal
# Background color
background = esc + '48;5;{i}m'
pattern = ( '{normal}{background}{padding:^{width}}{i:^3d} ' # pad the background '{r:02X}/{g:02X}/{b:02X}' # show the hex rgb code '{padding:^{width}}' # pad the background on the other side '{reset}' # reset again
)
base_context = dict(reset=reset, padding='', width=get_width())
for i, (r, g, b) in enumerate(colored_palette + grayscale_palette, 16): context = dict(i=i, r=r, g=g, b=b, color=r + g + b, **base_context) context.update(bold=bold.format(**context)) context.update(background=background.format(**context)) # Change text color from black to white when it might become unreadable if max(r, g, b) > 0xCC: context.update(normal=normal.format(i=0)) else: context.update(normal=normal.format(i=255)) print(pattern.format(**context), end='') # Print newlines when needed if i % 6 == 3: print() else: print(' ', end='') 2 A one-liner
background color
for i in {0..255}; do printf '\e[48;5;%dm%3d ' $i $i; (((i+3) % 18)) || printf '\e[0m\n'; doneforeground color
for i in {0..255}; do printf '\e[38;5;%dm%3d ' $i $i; (((i+3) % 18)) || printf '\e[0m\n'; done I liked @Tom's answer, but depending on the use case I like to be able to see black and white on the color, and the color on white and black. So I modified it a bit to:
#!/bin/bash
for i in {0..255} ; do # Black FG on color BG printf "\e[30;48;5;%sm%4d " "$i" "$i" # White FG on color BG printf "\e[97m%4d " "$i" # Color FG on black BG printf "\e[40;38;5;%sm%4d " "$i" "$i" # Color FG on white BG printf "\e[107m%4d " "$i" # Check whether to print new line [ $(( ($i + 1) % 4 )) == 0 ] && set1=1 || set1=0 [ $(( ($i - 15) % 6 )) == 0 ] && set2=1 || set2=0 if ( (( set1 == 1 )) && (( i <= 15 )) ) || ( (( set2 == 1 )) && (( i > 15 )) ); then printf "\e[0m\n"; fi
doneWhich prints something like this (first few colors shown):
It's an old question, but here's a Python 3 / bash one-liner:
python -c "print('\t'.join(f'\u001b[1;38;5;{s}m{s.ljust(4)}' + ('\n' if not int(s) % 8 else '') for s in (str(i) for i in range(256))) + '\u001b[0m')"