Created
May 31, 2025 11:13
-
-
Save dusansimic/78182868c4a30f066d4e4f1ea06cc88e to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class Colors: | |
RESET = "\033[0m" | |
BOLD = "\033[01m" | |
DISABLE = "\033[02m" | |
UNDERLINE = "\033[04m" | |
REVERSE = "\033[07m" | |
STRIKETHROUGH = "\033[09m" | |
INVISIBLE = "\033[08m" | |
class Foreground: | |
BLACK = "\033[30m" | |
RED = "\033[31m" | |
GREEN = "\033[32m" | |
ORANGE = "\033[33m" | |
BLUE = "\033[34m" | |
PURPLE = "\033[35m" | |
CYAN = "\033[36m" | |
LIGHTGREY = "\033[37m" | |
DARKGREY = "\033[90m" | |
LIGHTRED = "\033[91m" | |
LIGHTGREEN = "\033[92m" | |
YELLOW = "\033[93m" | |
LIGHTBLUE = "\033[94m" | |
PINK = "\033[95m" | |
LIGHTCYAN = "\033[96m" | |
class Background: | |
BLACK = "\033[40m" | |
RED = "\033[41m" | |
GREEN = "\033[42m" | |
ORANGE = "\033[43m" | |
BLUE = "\033[44m" | |
PURPLE = "\033[45m" | |
CYAN = "\033[46m" | |
LIGHTGREY = "\033[47m" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment