Skip to content

Instantly share code, notes, and snippets.

@egel
Created October 10, 2015 08:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save egel/ea3a9db24aa276614b20 to your computer and use it in GitHub Desktop.
Save egel/ea3a9db24aa276614b20 to your computer and use it in GitHub Desktop.
Simple python color class
#!/usr/bin/python3
# -*- coding: utf-8 -*-
class Colors:
HEADER = '\033[95m'
OKBLUE = '\033[94m'
OKGREEN = '\033[92m'
WARNING = '\033[93m'
FAIL = '\033[91m'
ENDC = '\033[0m'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment