Metadata-Version: 2.1
Name: hexacolors
Version: 0.4.6
Summary: :A simple library that converts string to hexadecimal understandable by python
Home-page: https://github.com/Marciel404/hexacolors
Author: Marciel404
License: MIT
Keywords: String hexadecimal converter
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE.txt

# Hexacolors

A simple library that converts string to hexadecimal understandable by python

A simple library that converts RGB to hexadecimal understandable by python

A simple library that converts CMYK to hexadecimal understandable by python

A simple library that converts HSL to hexadecimal understandable by python

A simple library that converts hexadecimal understandable by python

I created this library more to use as pycord integration

## Usage:
### install with pip

```shell
pip install hexacolors
```

### Import on your code:

```python
import hexacolors
```
### Run it
```python

Using StringColor:

    >>> import hexacolors
    >>>
    >>> hexacolors.string('Blue')
    >>>
    >>> print(hexacolors.listall) #List all colors availables
    
Using HexaColor:

    >>> import hexacolors
    >>>
    >>> hexacolors.hexadecimal('#0000FF') #Convert Hexadecimal Color for Python understand

Using rgb:

    >>> import hexacolors
    >>>
    >>> hexacolors.rgb(255,255,255)

Using cmyk:

    >>> import hexacolors
    >>>
    >>> hexacolors.cmyk(423,522,4,244)

Using hsl:

    >>> import hexacolors
    >>>
    >>> hexacolors.hsl('423,60%,70%')

```
