Metadata-Version: 2.4
Name: moncef-color-utils-demo
Version: 0.0.5
Summary: A simple utility package for handling colors by Moncef
Author: Moncef
License-File: LICENSE
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.7
Description-Content-Type: text/markdown

# Moncef's Color Utils

This is a demo package created for Moncef to handle color conversions and generation.

## Installation

```bash
pip install moncef-color-utils-demo
```

## Usage

```python
from moncef_colors import get_random_color, rgb_to_hex, moncef_signature

print(moncef_signature())
print(f"Random Color: {get_random_color()}")
print(f"RGB(255, 0, 0) to Hex: {rgb_to_hex(255, 0, 0)}")
```
