Metadata-Version: 2.1
Name: colorcall
Version: 0.2.0
Summary: Color call your caracal
Home-page: https://github.com/Sw1mmeR/colorcall/tree/main
Author: Mikle Sedrakyan
License: UNKNOWN
Platform: UNKNOWN
Requires-Python: >=3.11
Description-Content-Type: text/markdown

![Logo](https://mykaleidoscope.ru/x/uploads/posts/2022-09/1663623253_4-mykaleidoscope-ru-p-zloi-karakal-pinterest-4.jpg)

# Colorcall

Color call your caracal!


## Authors

- [@MikleSedrakyan](https://github.com/Sw1mmeR)
- [@AndreyAfanasiev](https://github.com/AfanasevAndrey)

## Usage/Examples

```python
from colorcall import green

green("My caracal is green!")
```
```python
from colorcall import Color, rgb, basic

print(
    rgb("Font pink, ", 250, 132, 239),
    basic("background is yellow.", Color.yellow, target="background"),
)
```
```python
from colorcall import FontStyle, rgb, basic

print(basic("This is bold", style=FontStyle.bold))
print(rgb("This is italic", style=FontStyle.italic))
```

