We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Lightning CSS performs the following conversion:
Input:
body { background: color-mix(in oklab, #101010 85%, transparent); }
Output:
body { background: oklab(17.3042% --7.45058e-9 1.49012e-8 / .85); }
It appears that the second argument of the oklab function is incorrect, as it includes a double negative sign.
oklab
You can observe this behavior in the Lightning CSS playground.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Lightning CSS performs the following conversion:
Input:
Output:
It appears that the second argument of the
oklab
function is incorrect, as it includes a double negative sign.You can observe this behavior in the Lightning CSS playground.
The text was updated successfully, but these errors were encountered: