public static Color addv(this Color c, float v)
 {
     HSV hsv = new HSV(c);
     return hsv.V(v + hsv.v).ToColor();
 }