Metadata-Version: 2.1
Name: Py-Colors
Version: 0.1
Summary: Library For Coloring And Formatting Terminal
Home-page: https://github.com/pmk456/Py-Colors
Author: Patan Musthakheem
Author-email: patanmusthakheem786@gmail.com
License: Apache 2.0
Project-URL: Documentation, https://github.com/pmk456/Py-Colors
Project-URL: Source, https://github.com/pmk456/Py-Colors
Project-URL: Tracker, https://github.com/pmk456/Py-Colors/issues
Platform: UNKNOWN
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.5
Description-Content-Type: text/markdown
License-File: LICENSE

# Py-Colors
## Installation
```shell
pip install py-colors
```
# Usage
```python
from colors import *
# First Method
print(fg_color + bg_color + style + "Hello, World")
# Second Method
print(color(string="Hello, World", fg="blue", bg="black", style="bold"))
```
# Available Colors
### Colors
```
RED
BLUE
CYAN
YELLOW
GREEN
MAGENTA
WHITE
BLACK
```
### Backgrounds
```
BG_BLACK
BG_RED
BG_GREEN
BG_YELLOW
BG_BLUE
BG_MAGENTA
BG_CYAN
BG_WHITE
```
### Styles
```
RESET
BOLD
REVERSE
UNDERLINE
ITALIC
BLINK
INVISIBLE
RED_UNDERLINE
GREEN_UNDERLINE
STRIKE
CURLY_UNDERLINE
```

