Metadata-Version: 2.1
Name: the-forest-palette
Version: 1.0.1
Summary: A package for custom matplotlib color palettes
Author: Beth O'Dwyer
Author-email: Beth O'Dwyer <odwyerbeth621@gmail.com>
Project-URL: Homepage, https://github.com/elodwyer1/the-forest-palette/
Project-URL: Issues, https://github.com/elodwyer1/the-forest-palette/issues
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

# the-forest-palette

`the-forest-palette` is a Python package that provides custom color palettes for use with Matplotlib. If you are inspired by
the beautiful, foresty greens of Ireland, you might be interested in using this palette.

# The Colors

![Color Grid](color_grid.png)

## Installation

pip install the-forest-palette

## Usage

    import matplotlib.pyplot as plt
    from the_forest_palette import register_custom_colors, set_custom_color_scheme, forest_colors

    # Register custom colors
    register_custom_colors()

    # Set custom color scheme
    set_custom_color_scheme()

    # Create a plot
    plt.plot([1, 2, 3], [4, 5, 6])
    plt.show()



