Skip to main content

Modern & visually appealing colormaps for Matplotlib

Project description

Aesthema

Aesthema provides modern & visually appealing colormaps for Matplotlib.

Matplotlib is a great package for visualizations, but we've all been there when you start creating your own colormaps because the default ones look not really appealing or you need to stick to your already existing theme. This is where this small package comes into play. Instead of creating your own colormaps all the time, you can use the provided colormaps or you can also easily create your own colormaps either by using the provided colors or any RGB color.

Currently available colors:

Available colors

Currently available colormaps:

Available colormaps

Quickstart

You can install the package using pip:

pip install aesthema

Let's take a look at some examples:

import numpy as np
import matplotlib.pyplot as plt

from aesthema import use_colormap


use_colormap()

x = np.linspace(0, 2 * np.pi, 100)

plt.figure()

plt.plot(x, np.sin(x))
plt.plot(x, np.cos(x))
plt.plot(x, np.sin(x + np.pi / 4))
plt.plot(x, np.cos(x + np.pi / 4))
plt.plot(x, np.sin(2 * x))
plt.plot(x, np.cos(2 * x))

plt.title("Sine and Cosine")
plt.xlabel("x")
plt.ylabel("Amplitude")
plt.show()

Line plot example

In this example, we use the default colormap. If you want to use a different colormap, just specify it when calling use_colormap, e.g.:

from aesthema import use_colormap, Colormaps


use_colormap(Colormaps.PASTEL)

You can also create your own custom colormap using either the colors provided in this package or any RGB color:

from aesthema import create_colormap, use_colormap, Colors


my_colormap = create_colormap([Colors.RED, Colors.ORANGE, Colors.LEMON, (141, 215, 127), Colors.LIGHT_OCEAN, (47, 72, 88)])
use_colormap(my_colormap)

Contributing

You created a nice colormap that you want to share with others? Awesome! Create a pull request and we will add it.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

aesthema-0.1.1.tar.gz (5.3 kB view hashes)

Uploaded Source

Built Distribution

aesthema-0.1.1-py3-none-any.whl (5.9 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page