from colorama import init
from colorama import Fore
init()
print(Fore.BLUE + 'Hello')
print(Fore.RED + 'Hello')
print(Fore.YELLOW + 'Hello')
print(Fore.GREEN + 'Hello')
print(Fore.WHITE + 'Hello')
#test in vscode
#code by fawlid
import colorama
from colorama import Fore
print(Fore.RED + 'This text is red in color')
#example
print("