Normally when using 1-color seaborn color palettes such as light_palette, the user doesn't care about the color white. However, since I am using this to pass a cmap into a pandas df.style object I want the minimum value to include white.
Basically I want this
sns.palplot(sns.light_palette("green"))
to include a white portion

