Metadata-Version: 2.4
Name: terminal_colors_LLD
Version: 1.0.0
Summary: A package for coloring your output to the terminal
Author: LLD
Author-email: LLD <lduinker04@gmail.com>
License-Expression: MIT
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: OS Independent
Requires-Python: >=3.13
Description-Content-Type: text/markdown
License-File: LICENCE
Dynamic: author
Dynamic: license-file

# Terminal Colors

This is a simple module that allows you to print colored output to the terminal. To see how to use this module please call the color_help() function.

# Basic usage:
```py
from terminal_colors import print_color

print_color("¤red this is red ¤blue ¤bold this is blue and bold end¤ this is normal ¤green and this is green")
print_color(1,True,[1,2,3,"¤red hi"])
print(color_text("¤green well hello there"))
```
