Metadata-Version: 2.4
Name: fadecat
Version: 0.2.5
Summary: Fadecat is a fast and easy-to-use library to enhance your terminal.
Author-email: m2uroy <m2uroy@gmail.com>
License: MIT
Project-URL: Homepage, https://github.com/m2uroy/fadecat
Project-URL: Changelogs, https://github.com/m2uroy/fadecat/blob/main/changelogs.md
Project-URL: Contributing, https://github.com/m2uroy/fadecat/blob/main/contributing.md
Project-URL: Bug Tracker, https://github.com/m2uroy/fadecat/issues
Keywords: terminal,gradient,ansi,color,cli-ui,python,ascii,colors,ascii-art,fade,python-color,python-fade,python-gradient,gradient-text,fade-text,banner-text-color,module-fade-text
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Topic :: Terminals
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: license
Dynamic: license-file

<div align="center">
  <h1>Fadecat</h1>

  ![Python](https://img.shields.io/badge/Python-3.10+-3776AB?style=flat)
  ![PyPI - Status](https://img.shields.io/pypi/status/fadecat)
  ![License](https://img.shields.io/badge/License-MIT-salad?style=flat)
</div>

### About Fadecat
Fadecat is an improved version of [venaxyt/fade](https://github.com/venaxyt/fade).

There are new color palettes here, as well as a new `tilt` function.
More details can be found in [docs](./docs).
Function allows you to select the gradient slope from `0°` to `360°`.

Additionally, ANSI support in Windows has been improved, making `TrueColor (24-bit)` escape codes available.

### Getting Started
Install with pip or your favorite PyPI package manager.
```bash
pip install fadecat
```

### Let's use an example
To get started, first import the library.
```python
from fadecat import fadecat
```

Let's use the table from [docs/standard-palettes.md](./docs/standard-palettes.md) and take palette [Reef](./gallery/reef.svg).

| Palette | Method | Preview |
| :--- | :--- | :---: |
| **Reef** | `.reef()` | ![reef](./gallery/reef.svg) |

Let's try to use this in our code. You can find out how the API works in [docs/how-to-use.md](./docs/how-to-use.md).

```python
print(fadecat.reef("Sea greetings! 🌊", tilt=90))
```
