% magick # Simple text on a background magick -font -background -fill -pointsize label:'' # Simple black text on a transparent background magick -font -background transparent -fill white -pointsize label:'' # list fonts magick -list font | less $ font-list: magick -list font | sed -n 's/\W*Font: //p' $ background-colour: magick -list color | awk '{print$1}' | grep -v 'gray\|grey' | tail -n +6 $ foreground-colour: magick -list color | awk '{print$1}' | grep -v 'gray\|grey' | tail -n +6