/// <summary>
 /// Gets destination color.
 /// </summary>
 /// <param name="colorMatrix"> The color mtrix. </param>
 /// <returns> The product color. </returns>
 public static Color GetDestinationColor(this Matrix5x4 colorMatrix) => AdjustmentExtensions.ToColor(AdjustmentExtensions.GetDestinationColorHdr(colorMatrix));
 /// <summary>
 /// Gets color matching.
 /// </summary>
 /// <param name="source"> The source color. </param>
 /// <param name="destination"> The destination color. </param>
 /// <returns> The product matrix. </returns>
 public static Matrix5x4 GetColorMatching(Color source, Color destination) => AdjustmentExtensions.GetColorMatching(new Vector4(source.R / 255f, source.G / 255f, source.B / 255f, source.A / 255f), new Vector4(destination.R / 255f, destination.G / 255f, destination.B / 255f, destination.A / 255f));