#!/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"