Metadata-Version: 2.1
Name: truecolor.py
Version: 0.0.2
Summary: A better console color library
Home-page: https://github.com/chanchan69/truecolor
Author: SirChanChan
Author-email: chanchan@sirchanchan.dev
License: UNKNOWN
Project-URL: Bug Tracker, https://github.com/chanchan69/truecolor/issues
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.1
Description-Content-Type: text/markdown
License-File: LICENSE

# truecolor

A better console color library for python

[GitHub](https://github.com/chanchan69/truecolor/)

[PyPI](https://pypi.org/project/truecolor.py/)

### Print Colored Text
```py
from truecolor import fg, reset
from os import system

system('cls')
print(f"{fg('magenta')}This {fg((255, 0, 0))}is{fg('magenta')} magenta text!{fg('#ff8243')} This is the exact hex color #ff8243 :){reset}")
```

### Output
![alt text](https://media.discordapp.net/attachments/892129513213952010/892608621366632448/unknown.png)

