public static IndigoRegionColor GetColor(IndigoRegionTypes type)
 {
     return ColorList.FirstOrDefault (x => x.Type == type);
 }
 public IndigoRegionColor(IndigoRegionTypes type, Color color, float factor)
 {
     Type = type;
     Color = color;
     ColorCorrectionFactor = factor;
 }