在終端機中列印 256 色測試圖案

在終端機中列印 256 色測試圖案

如何在終端機中列印 256 色測試圖案?

我想檢查我的終端是否正確支援 256 色。

答案1

256 色測試圖案

要獲得下圖,請使用:

curl -s https://gist.githubusercontent.com/HaleTom/89ffe32783f89f403bba96bd7bcd1263/raw/e50a28ec54188d2413518788de6c6367ffcea4f7/print256colours.sh | bash

256 色測試圖案

要點bash/zsh代碼shellcheck乾淨,並且還支援“看,沒有子進程!”。


或者,為了bash快速:

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
done

就徹底的殺傷力而言,這群人的祖父是terminal-colors572行腳本與多個輸出格式

你也可以列印真彩色(24 位元)測試圖案

答案2

我找到了一個GitHub 上的不錯的 Python 腳本由 Justin Abrahms 編寫,它還列印顏色的十六進位代碼。

下載腳本到目前工作目錄

wget https://gist.githubusercontent.com/justinabrahms/1047767/raw/a79218b6ca8c1c04856968d2d202510a4f7ec215/colortest.py

給它執行權限

chmod +x colortest.py

運行:

./colortest.py

這是連結腐爛情況下的完整腳本:

#!/usr/bin/env python
# Ported to Python from http://www.vim.org/scripts/script.php?script_id=1349

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, 

答案3

雖然沒有相當一個“測試模式”,我有xterm 顏色選擇器

螢幕截圖

答案4

一條單線

背景顏色

for i in {0..255}; do printf '\e[48;5;%dm%3d ' $i $i; (((i+3) % 18)) || printf '\e[0m\n'; done

前景色

for i in {0..255}; do printf '\e[38;5;%dm%3d ' $i $i; (((i+3) % 18)) || printf '\e[0m\n'; done

相關內容