diff --git a/src/ImageSharp/ColorSpaces/CieLab.cs b/src/ImageSharp/ColorSpaces/CieLab.cs index 2346b395c0..5e03b910fb 100644 --- a/src/ImageSharp/ColorSpaces/CieLab.cs +++ b/src/ImageSharp/ColorSpaces/CieLab.cs @@ -79,13 +79,13 @@ public readonly struct CieLab : IEquatable /// /// Gets the a color component. - /// A value usually ranging from -100 to 100. Negative is green, positive magenta. + /// A value usually ranging from −128 to 127. Negative is green, positive magenta. /// public readonly float A { get; } /// /// Gets the b color component. - /// A value usually ranging from -100 to 100. Negative is blue, positive is yellow + /// A value usually ranging from −128 to 127. Negative is blue, positive is yellow /// public readonly float B { get; }