diff --git a/modules/util/plot.py b/modules/util/plot.py
index 9f7e910421a04ca501d35cd5c63d21eaafc34d67..d576b7c8ca92b709d610a582eddb306f95ee7469 100644
--- a/modules/util/plot.py
+++ b/modules/util/plot.py
@@ -217,7 +217,7 @@ def plot_image3(image, bt, cmap='Greys'):
     ax.set_extent([-105, -70, 15, 50], crs=ccrs.PlateCarree())
     #ax.imshow(bt, cmap=cmap, origin='upper', extent=(xmin, xmax, ymin, ymax), transform=geos)
     #ax.imshow(image, cmap='YlGnBu', origin='upper', extent=(xmin, xmax, ymin, ymax), vmin=0.6, vmax=1.0, transform=geos)
-    ax.imshow(image, cmap='Blues', origin='upper', extent=(xmin, xmax, ymin, ymax), vmin=0.52, vmax=1.0, transform=geos)
+    ax.imshow(image, cmap='Purples', origin='upper', extent=(xmin, xmax, ymin, ymax), vmin=0.52, vmax=1.0, transform=geos)
     ax.coastlines(resolution='50m', color='blue', linewidth=0.25)
     ax.add_feature(ccrs.cartopy.feature.STATES, linewidth=0.25)
     plt.title('GOES-16', loc='left', fontweight='bold', fontsize=15)
@@ -240,7 +240,7 @@ def make_icing_image(h5f, probs, ice_lons, ice_lats, clvrx_str_time, satellite,
     if bg_image is not None:
         ax.imshow(bg_image, origin='upper', extent=(xmin, xmax, ymin, ymax), cmap='Greys', transform=geos)
     if probs is not None:
-        ax.imshow(probs, cmap='Blues', origin='upper', extent=(xmin, xmax, ymin, ymax), vmin=0.55, vmax=1.0, transform=geos)
+        ax.imshow(probs, cmap='Purples', origin='upper', extent=(xmin, xmax, ymin, ymax), vmin=0.55, vmax=1.0, transform=geos)
     ax.coastlines(resolution='50m', color='green', linewidth=1.50)
     # ax.add_feature(ccrs.cartopy.feature.STATES, linewidth=0.25)