Metadata-Version: 2.4
Name: colorme-v2
Version: 2.1
Summary: Print hex-colored text in your terminal from Python
Home-page: https://github.com/ts-dev-java/colorme
Author: TS-DEV-JAVA
License: GPL-2.0
Project-URL: Homepage, https://github.com/ts-dev-java/colorme
Project-URL: Source, https://github.com/ts-dev-java/colorme
Project-URL: Issues, https://github.com/ts-dev-java/colorme/issues
Keywords: color,hex,terminal,ansi,text,python
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: GNU General Public License v2 (GPLv2)
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
Dynamic: home-page
Dynamic: requires-python

# colorme-v2

Print hex-colored text in your terminal from Python.

## Features

- Color text using hex codes
- Support for bold and underline styles
- Easy to use API
- Super light-weight

## Installation

```bash
pip install colorme-v2
```

## Usage
```python
from colorme import color_text, bold, underline

# Prints hello world in PURE red

print(color_text("Hello in red!", "#ff0000"))
# Prints Blue backround

print(color_text("Background blue", "#0000ff", background=True))

# Prints Bold green text
print(bold(color_text("Bold green", "#00ff00")))

# Prints Orange Underlined Text
print(underline(color_text("Underlined orange", "#ffa500")))
```

# License

this project is licensed under:

GPL-2.0 License
