#!/bin/bash

colors=( $( convert -list color | awk '/srgb/{print "xc:"$1}' ) ) ; montage -pointsize 12 -fill black -label "%f" -geometry 100x100+1+1 ${colors[@]} -tile 5x5 colors.gif ; convert -delay 80 colors.gif colors.gif ; animate colors.gif 

