I have read some questions on this subject but I have been unable to find a specific answer to my question.
Let consider the image below:

My goal is just to change the limit colors of the map, e.g. in this case the color map goes from dark red to dark blue, let's say I would like it to go from dark green to dark blue. Specifically, I would it to go from colors #244162 to #DCE6F1 (tonalities of blue) in the same continuous way as in the example above.
How is it possible to do this?
[EDIT]
I have tried the following code:
import matplotlib.pyplot as plt
import matplotlib.colors as clr
some_matrix = ...
cmap = clr.LinearSegmentedColormap('custom blue', ['#244162','#DCE6F1'], N=256)
plt.matshow(some_matrix, cmap=cmap)
But I get the error message TypeError: list indices must be integers, not unicode.

LinearSegmentedColormap?matplotlibdocumentation. matplotlib.org/examples/color/colormaps_reference.htmlLinearSegmentedColormapwith this codecmap = matplotlib.colors.LinearSegmentedColormap('custom blue', ['#244162','#DCE6F1'], N=256)but it hasn't worked.