MaterialColorUtilities icon indicating copy to clipboard operation
MaterialColorUtilities copied to clipboard

Material You color algorithms for .NET

Results 2 MaterialColorUtilities issues
Sort by recently updated
recently updated
newest added

Just a small tip. I use extension method instead of SourceGenerator to implement the `Scheme.Convert`, which is better for code portability ```c# public static class Ext { public static Scheme...

To support a cleaner foreach loop It'd be great to rename (or alias for backwards compatibility) `Scheme.Enumerate` to `Scheme.GetEnumerator`. ```cs // old foreach (var (key, color) in scheme.Enumerate()) { //...