Skip to content

Instantly share code, notes, and snippets.

@maliciousgroup
Created April 6, 2021 15:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save maliciousgroup/d01474badaea520046a7b7b6c5213230 to your computer and use it in GitHub Desktop.
Save maliciousgroup/d01474badaea520046a7b7b6c5213230 to your computer and use it in GitHub Desktop.
colors
def colors() -> dict:
_colors: dict = {
'red': '\x1b[31;1m',
'green': '\x1b[32;1m',
'bold': '\x1b[1m',
'reset': '\x1b[0m'
}
return _colors
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment