public static Color adds(this Color c, float s)
 {
     HSV hsv = new HSV(c);
     return hsv.S(s + hsv.s).ToColor();
 }