imagemagickのdisplayコマンドは、その名前の通り表示を担当するコマンドです。
これに渡す変数"xc:"*1にはカラーコードを渡すことができるため、視覚的に色を確認したい際に便利です。
実際のところ
showcolor() { display -size 128x128 xc:"${1}"; }
16進のカラーコードの場合
showcolor #6823AF
名前(登録されていれば)の場合
showcolor wheat
参考もと
Ever want to quickly see a hex color value from the command line? Try using ImageMagick display and making a easy to use function to call it.
— Command Line Magic (@climagic) January 27, 2023
showcolor() { display -size 400x400 xc:"#${1}"; }
showcolor 6823AF pic.twitter.com/GBKnJRtJzK- Canvas Creation -- ImageMagick Examples
*1:X Constant Imageという意味らしい