## Problem The lab ranges ([code](https://github.com/Evercoder/culori/blob/main/src/lab/definition.js#L26)) are set as following: ```js ranges: { l: [0, 100], a: [-100, 100], b: [-100, 100] }, ``` But in [CSS Color Module 4](https://www.w3.org/TR/css-color-4/#funcdef-lab), they’re defined as -125 and 125: > **Percent reference range** > for L: 0% = 0.0, 100% = 100.0 > for a and b: -100% = -125, 100% = 125 Further, the `lab65` ranges are (I’m guessing) the same ranges, just converted? ```js ranges: { l: [0, 100], a: [-86.182, 98.234], b: [-107.86, 94.477] } ``` Is this an intentional deviation?