rainbowpy

Some tools for making colormaps


License
GPL-2.0+
Install
pip install rainbowpy==0.4.0

Documentation

Travis CI w/ Logo codecov PyPI

status

GitHub last commit (branch) GitHub issues GitHub pull requests GitHub contributors

rainbowpy

alt text

some of my own custom color tools

pip install rainbowpy

quick intro

rainbowpy is a simple tool to handle building color maps from a list of colors. There will likely me more features in the future.

You can create a YAML file and place it in:

$HOME/.rainbowpy/custom_maps.yml

which will be read on import will add the created color maps to your mpl library:

The format is

apples:
  - "#28CC5F"
  - "#29D48"
  - "#F3232"

iri:
  - "#FEFBE9"
  - "#FCF7D5"
  - "#f5f3c1"
  - "#eaf0b5"
  - "#ddecb5"
  - "#d0e7ca"
  - "#c2e3d2"
  - "#b5ddd8"
  - "#a8d8dc"
  - "#9bd2e1"
  - "#8dcbe4"
  - "#81c4e7"
  - "#7bbce7"
  - "#7eb2e4"
  - "#88a5dd"
  - "#9398d2"
  - "#9b8ac4"
  - "#9d7db2"
  - "#9a709e"
  - "#906388"
  - "#805770"
  - "#684957"
  - "#46353a"

import matplotlib.pyplot as plt
import rainbowpy
N = 1000
array_dg = np.random.uniform(0, 10, size=(N, 2))
colors = np.random.uniform(-2, 2, size=(N,))
fig, ax = plt.subplots()


ax.scatter(array_dg[:, 0], array_dg[:, 1], c=colors, cmap="iri")

png

Icons made by Smashicons from www.flaticon.com