I've got a little Python3 program I wrote which does some basic ANSI colour code stuff. But it doesn't seem to work when I run it from a bash console - everything that I print is in the default pale blue text colour, until it gets to a reset code, whereupon it makes everything white from that point on.
I admit that the way I'm doing the colours is probably not very good (just chucked the escape code \033[91m and \033[93m straight into a string), could that be causing the problem? Or is there some kind of terminal variable I need to set? I'm a linux novice - trying to remember things from my first year compsci electives years ago.
Basically I just want to be able to demonstrate this program to people on the web without them having to install Python or SSH into something themselves.