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:
Currently 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()
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
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file aesthema-0.1.1.tar.gz
.
File metadata
- Download URL: aesthema-0.1.1.tar.gz
- Upload date:
- Size: 5.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.18
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 31a6ce9071cb90f95647d525f1d238158de78793767ed10d25b608689559d08a |
|
MD5 | 542a98b21f2a8a643c50d64c589a2c4a |
|
BLAKE2b-256 | 37afe325bf7f35780b7b5084b2ac5847e11735683b50c15aed571434090fa1c1 |
File details
Details for the file aesthema-0.1.1-py3-none-any.whl
.
File metadata
- Download URL: aesthema-0.1.1-py3-none-any.whl
- Upload date:
- Size: 5.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.18
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ba8dbf194167956ceb4df542028de6b6f34b5db5f93230014dbf6bbc0818ee47 |
|
MD5 | ecafe0d33e363d7c13628339f2dcb7df |
|
BLAKE2b-256 | b83dfab71d481fa7ad1cb9f300d7458962dc8b77b6a45c6d6e43f4e8ee826b7f |