PoshC2_Python/Colours.py

8 lines
133 B
Python
Raw Normal View History

2018-07-23 08:55:15 +00:00
#!/usr/bin/python
class Colours:
BLUE = '\033[94m'
GREEN = '\033[92m'
RED = '\033[91m'
END = '\033[0m'
YELLOW = '\033[93m'