Metadata-Version: 2.1
Name: pycolor3
Version: 0.0.5
Summary: Color Markup In Python!
Home-page: https://github.com/0Exe/pycolor
Author: 0Exe
Author-email: zeroexe3000@gmail.com
License: UNKNOWN
Project-URL: Bug Tracker, https://github.com/0Exe/pycolor/issues
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE

pycolor3

# Installation:

For Windows:
```py
pip install pycolor3 --upgrade
```

For MacOS and Linux:
```py
pip3 install pycolor3 --upgrade
```

# Usage Examples:

```py
from pycolor3 import color


# Colorful Text

print(color("green", "Hello World")) # print "Hello World" in green
print(color("l-red", "This is light red!")) # print "This is light red!" in light red

# Background Colors

print(color("bg-cyan", "This has a cyan background!")) # prints text with a cyan background
print(color("bg-green", "This has a green background!")) # prints text with green background


```

A list of all available colors:
- gray
- black
- red
- green
- yellow
- blue
- magenta
- cyan
- white

##

you can prefix "l-" to any color to make it light.


you can also prefix "bg-" to any color to make it background.


for a light background, you can use "l-bg-" as a prefix.


`NOTE: there isn't a "l-" prefix for white.`

#
License: The MIT License (MIT)
#
By [github.com/0Exe](https://github.com/0Exe)


