在终端中打印 256 色测试图案

在终端中打印 256 色测试图案

如何在终端中打印 256 色测试图案?

我想检查我的终端是否正确支持 256 色。

答案1

256 色测试图案

256-colour test pattern

对于上述情况,您可以使用我的 bash 代码。 (“看,马,没有子流程!”)

或者快速狂欢一下:

for i in {0..255} ; do
    printf "\x1b[38;5;${i}m%3d " "${i}"
    if (( $i == 15 )) || (( $i > 15 )) && (( ($i-15) % 12 == 0 )); then
        echo;
    fi
done

24 位/真彩色测试模式

这个问题对于全谱:)

答案2

安装一个名为colortest

并使用以下命令来测试 ASCII 颜色图

colortest-8   => Display color palette using 8 colors.
colortest-16  => Display color palette using 16 colors.
colortest-256 => Display color palette using 256 colors.

相关内容