When using read command to get user input like the following
read -p "[WARN] Text.. [Y/N]" choice
Is it possible to assign an ANSI color to the warning text, like in echo command?
WARN='\033[0;33m'
RESET='\e[0m'
echo -e "${WARN}Some warning message${RESET}"