qobuz-dl/qobuz_dl/color.py
vitiko98 5f3c85847f Fix Color code error with windows; close #36
Covers won't be downloaded in their original size anymore by default as they are too big. If you still want to download in the original size, just  set the flag --og-cover after running a qobuz-dl command.
2020-12-17 21:55:42 -04:00

15 lines
250 B
Python

from colorama import Style, Fore, 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