Compare commits

...

2 Commits

Author SHA1 Message Date
e1e78aae6e Add ciglib.py 2020-09-18 23:27:30 -07:00
f64d92dc61 Add ignore file 2020-09-18 23:27:10 -07:00
2 changed files with 9 additions and 0 deletions

1
.gitignore vendored Normal file
View File

@@ -0,0 +1 @@
__pycache__

8
ciglib.py Normal file
View File

@@ -0,0 +1,8 @@
class fgColor:
GREEN = '\033[92m'
RED = '\033[91m'
YELLOW = '\033[93m'
PURPLE = '\033[95m'
CYAN = '\033[96m'
GRAY = '\033[90m'
NC = '\033[0m'