summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--chroma/color/colormap.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/chroma/color/colormap.py b/chroma/color/colormap.py
index 6f3e056..61a2622 100644
--- a/chroma/color/colormap.py
+++ b/chroma/color/colormap.py
@@ -1,7 +1,7 @@
import numpy as np
import matplotlib.cm as cm
-def map_to_color(a, range=None, map=cm.hsv, weights=None):
+def map_to_color(a, range=None, map=cm.jet_r, weights=None):
a = np.asarray(a)
if range is None:
range = (a.min(), a.max())