I have this piece of code below:
echo \" \\033[33mTitle of the Program\\033[0m\"
which changes the colour to yellow.
How can I make the text
As far as I can tell, it's meant to be:
echo " \033[5mTitle of the Program\033[0m"
The only change is before the title, the 33m is replaced by 5m. See Ansi Escape Codes
Note that some systems filter out blink, because it's really annoying. Your mileage may vary.