Metadata-Version: 2.1
Name: palette-gen
Version: 0.1.0
Summary: A simple tool to extract and display color palettes from images.
Home-page: https://github.com/auth-xyz/palette
Author: auth-xyz
Author-email: smmc.auth@gmail.com
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: Pillow
Requires-Dist: rich
Requires-Dist: scikit-learn
Requires-Dist: numpy


# Palette

A simple Python script for generating a color palette based on a given image/wallpaper




## Installation

Installing palette.py using pip

```bash
    pip install palettepy
```


Installing from source/using from source

```bash
    git clone https://github.com/auth-xyz/palette
    cd palette
    python3 color_palette/color_palette.py 
```



## Usage

```bash
palette <path to image> <amount of colors>
// Example
palette $HOME/.wallpapers/some_wallpaper.png

┏━━━━━━━┳━━━━━━━━━━┓
┃ Color ┃ Hex Code ┃
┡━━━━━━━╇━━━━━━━━━━┩
│ █████ │ #b97c8e  │
│ █████ │ #6a6279  │
│ █████ │ #2e3440  │
│ █████ │ #614753  │
│ █████ │ #556682  │
└───────┴──────────┘

```
