Metadata-Version: 2.4
Name: pycolorx
Version: 0.1.1
Summary: A Python class for colored terminal text, gradients, and styles
Home-page: https://github.com/kenijan/color
Author: kenijan
Author-email: kenijanvip@gmail.com
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: license-file
Dynamic: requires-python
Dynamic: summary

# pycolorx

A Python class for colored terminal text, gradients, rainbow text, and text styles like bold and underline.

## Example

```python
from colorx import Color

print(Color.red("Hello Red"))
print(Color.bgRed("Hello background Red"))
print(Color.gradient("Hello Gradient", (255,0,0), (0,0,255)))
print(Color.bold("Bold Text"))
print(Color.rainbow("Rainbow Text"))
```


---

### **5️⃣ LICENSE**

You can use the MIT License:

```text
MIT License

Copyright (c) 2026 Kenijan

Permission is hereby granted, free of charge, to any person obtaining a copy...
```
