Support for CSS Color Level 4 lab() and other modern color functions
Author: utwocCreated Mar 22, 2026Updated Jun 24, 2026
Problem
html2canvas fails to parse modern CSS color functions introduced in CSS Color Level 4, specifically:
lab()- CIELAB color spacelch()- LCH color spaceoklab()- Oklab color spaceoklch()- Oklch color space
Error Message
Attempting to parse an unsupported color function "lab"
Example Code
.element {
color: lab(50% 40 20);
background: lch(60% 50 180);
}Source: niklasvh/html2canvas