Problem
The lab ranges (code) are set as following:
ranges: {
l: [0, 100],
a: [-100, 100],
b: [-100, 100]
},
But in CSS Color Module 4, 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?
ranges: {
l: [0, 100],
a: [-86.182, 98.234],
b: [-107.86, 94.477]
}
Is this an intentional deviation?