You can write a wrapper function for all input and output colors.
Something like this
from colorama import init from colorama import Fore as F from colorama import Back as B from colorama import Style def color(fore='', back='', text): return f'{fore}{back}{text}{Style.RESET_ALL}' print(color(F.GREE, B.BLUE, 'Hello there!'))You may also want to look at prompt_toolkit It's a powerful library which can do a lot more instead of just colored terminal.