Skip to content

Instantly share code, notes, and snippets.

@NarmakTwo
Forked from minism/color.py
Created December 18, 2023 20:37
Show Gist options
  • Save NarmakTwo/e6026eb98fc89557b5011cfc48a9a0c3 to your computer and use it in GitHub Desktop.
Save NarmakTwo/e6026eb98fc89557b5011cfc48a9a0c3 to your computer and use it in GitHub Desktop.
python terminal colors
# Terminal color definitions
class fg:
BLACK = '\033[30m'
RED = '\033[31m'
GREEN = '\033[32m'
YELLOW = '\033[33m'
BLUE = '\033[34m'
MAGENTA = '\033[35m'
CYAN = '\033[36m'
WHITE = '\033[37m'
RESET = '\033[39m'
class bg:
BLACK = '\033[40m'
RED = '\033[41m'
GREEN = '\033[42m'
YELLOW = '\033[43m'
BLUE = '\033[44m'
MAGENTA = '\033[45m'
CYAN = '\033[46m'
WHITE = '\033[47m'
RESET = '\033[49m'
class style:
BRIGHT = '\033[1m'
DIM = '\033[2m'
NORMAL = '\033[22m'
RESET_ALL = '\033[0m'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment