- Does it preserve hue and saturation?
- Yes — the tool operates in HSL space so only lightness changes. HEX/RGB math directly would shift hue. HSL-based lightening is what designers expect.
- Why does pure black/white look wrong when lightened?
- Pure black (L=0) has no hue; lightening adds lightness but still no hue. Add saturation first if you want the lightened version to have color.
- What percentage should I use?
- Subtle shifts: 5-15% per step. Dramatic: 25-40%. For a stepped palette (primary, primary-light, primary-lighter), 10-15% steps feel natural.
- Is this the same as color-mix() in CSS?
- Similar effect; color-mix() with white/black operates in OKLCH or LCH, which is perceptually uniform. HSL is the traditional approach and matches legacy tooling.