Skip to content

Commit

Permalink
change colors
Browse files Browse the repository at this point in the history
  • Loading branch information
ghislainp committed Feb 6, 2018
1 parent 0cd62be commit 5b0c176
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion smrt/utils/mpl_plots.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ def plot_snowpack(sp, show_vars=None, show_shade=False, ax=None):
ax.plot((0, 100*xmax), (0, 0), '0.5')
for lay, z in zip(sp.layers, -depth):
if show_shade:
ax.fill_between((0, 100 * xmax), [z]*2, [z+lay.thickness]*2, color='#1588ff', alpha=lay.frac_volume)
ax.fill_between((0, 100 * xmax), [z]*2, [z+lay.thickness]*2, color='#55a9ff', alpha=lay.frac_volume)
else:
ax.plot((0, 100*xmax), (z, z), '0.5')

Expand Down

0 comments on commit 5b0c176

Please sign in to comment.