mirror of
https://github.com/nathom/streamrip.git
synced 2025-06-06 01:31:19 -04:00
14 lines
250 B
Python
14 lines
250 B
Python
from colorama import Fore, Style, init
|
|
|
|
init(autoreset=True)
|
|
|
|
DF = Style.NORMAL
|
|
BG = Style.BRIGHT
|
|
RESET = Style.RESET_ALL
|
|
OFF = Style.DIM
|
|
RED = Fore.RED
|
|
BLUE = Fore.BLUE
|
|
GREEN = Fore.GREEN
|
|
YELLOW = Fore.YELLOW
|
|
CYAN = Fore.CYAN
|
|
MAGENTA = Fore.MAGENTA
|