deepest property

O deepest

Returns the color with the highest saturation value.

Implementation

O get deepest => colors.reduce((color1, color2) =>
    color1.saturation < color2.saturation ? color2 : color1);