lordmauve / adventurelib

A minimal library for writing text adventure games in Python 3
https://adventurelib.readthedocs.io/
MIT License
153 stars 42 forks source link

Output colors with say #24

Open brainysmurf opened 5 years ago

brainysmurf commented 5 years ago

Games cry out for color / format options. Perhaps use the following API with say:

say(something, fg="red", bg="white")

There is colorama that would help implement this, but if you wanted to keep it so that users could just use adventurelib.py in their own projects, maybe have to implement ourselves?

Nephyx commented 5 years ago

Working on it, almost done 🙂