Was trying to change the color of the outline of my colorbar:  and wasn't clear in the docs how to do it, but found on stackoverflow that there's an `outline` attribute that is the collection of spines: ```python self.outline = ax.spines['outline'] = _ColorbarSpine(ax) ``` around the colorbar (and is not the same spines as the axes containing the colorbar since I tried that and it didn't work.)