如何在终端上打印 256 色测试图案?
我想检查我的终端是否正确支持 256 种颜色。
答案1
256 色测试图案
要获取下图,请使用:
curl -s https://gist.githubusercontent.com/HaleTom/89ffe32783f89f403bba96bd7bcd1263/raw/e50a28ec54188d2413518788de6c6367ffcea4f7/print256colours.sh | bash
这要点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-colors
是572 行脚本具有多个输出格式。
你也可以打印真彩色(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