I believe the following code should produce grey edges but they have colour. ``` import numpy as np import matplotlib.pyplot as plt plt.pcolormesh(np.arange(12).reshape(4, 3), edgecolor='#888888', facecolor='none') plt.show() ```