Android's Palette API implementation for Xamarin.iOS. This libraty allows you to extract an array of colors from single image.
- Muted Color
- Vibrant Color
- Light Muted Color
- Light Vibrant Color
- Dark Muted Color
- Dark Vibrant Color
Background color is MutedColor, Title is VibrantColor and smaller text is LightVibrantColor.
var palette = new ColorPaletteGenerator();
var image = UIImage.FromBundle ("Images/sampleImage.jpeg");
palette.Generate (image);
// Use generated colors
Something.Color = palette.MutedColor;