Metadata-Version: 2.4
Name: loguru-themes
Version: 0.1.0
Summary: Curated color themes and Unicode level icons for loguru, applied in one call.
Project-URL: Homepage, https://github.com/0cherednoq/loguru-themes
Project-URL: Documentation, https://0cherednoq.github.io/loguru-themes/
Project-URL: Repository, https://github.com/0cherednoq/loguru-themes
Project-URL: Issues, https://github.com/0cherednoq/loguru-themes/issues
License: MIT
License-File: LICENSE
Keywords: cli,colors,dracula,logging,loguru,themes
Requires-Python: >=3.9
Requires-Dist: loguru>=0.7
Provides-Extra: dev
Requires-Dist: pytest>=7; extra == 'dev'
Description-Content-Type: text/markdown

# loguru-themes

Curated color themes and minimalist Unicode level icons for [loguru](https://github.com/Delgan/loguru) — applied to any logger in one call.

### 📖 Documentation & live previews → **https://0cherednoq.github.io/loguru-themes/**

## Install

```bash
pip install loguru-themes
```

## Quick start

```python
from loguru import logger
from loguru_themes import apply_theme

apply_theme(logger, "dracula")

logger.info("server listening on http://localhost:8000")
logger.success("migration completed in 1.2s")
logger.warning("cache miss rate above 30%")
logger.error("failed to reach upstream service")
logger.critical("data corruption detected — aborting")
```

## Themes

`dracula` · `nord` · `catppuccin` · `monokai` · `dark` · `light`

<table>
  <tr>
    <td><img src="https://raw.githubusercontent.com/0cherednoq/loguru-themes/main/.github/assets/dracula.png" alt="dracula theme" width="100%"></td>
    <td><img src="https://raw.githubusercontent.com/0cherednoq/loguru-themes/main/.github/assets/nord.png" alt="nord theme" width="100%"></td>
  </tr>
  <tr>
    <td><img src="https://raw.githubusercontent.com/0cherednoq/loguru-themes/main/.github/assets/catppuccin.png" alt="catppuccin theme" width="100%"></td>
    <td><img src="https://raw.githubusercontent.com/0cherednoq/loguru-themes/main/.github/assets/monokai.png" alt="monokai theme" width="100%"></td>
  </tr>
  <tr>
    <td><img src="https://raw.githubusercontent.com/0cherednoq/loguru-themes/main/.github/assets/dark.png" alt="dark theme" width="100%"></td>
    <td><img src="https://raw.githubusercontent.com/0cherednoq/loguru-themes/main/.github/assets/light.png" alt="light theme" width="100%"></td>
  </tr>
</table>

Customizing themes, icons, the color-scheme remapping, and using your own logger
are all covered in the **[documentation](https://0cherednoq.github.io/loguru-themes/)**.

## License

MIT
