1 2 3 4 5 6 7 8 9 10 11 12 13
#!/usr/bin/env bash
BLUE=`printf '\e[48;5;74m\e[48;2;70;194;228m'`
PINK=`printf '\e[48;5;175m\e[48;2;229;150;182m'`
WHITE=`printf '\e[48;5;255m\e[48;2;255;255;255m'`
ROW=$(printf %$(tput cols)s)
CLEAR=`tput sgr0`
echo "$BLUE$ROW"
echo "$PINK$ROW"
echo "$WHITE$ROW"
echo "$PINK$ROW"
echo "$BLUE$ROW$CLEAR"