From d4444919b7599d8d155654b4d99257839d51258a Mon Sep 17 00:00:00 2001 From: Eli Zaretskii Date: Sun, 19 May 2024 11:23:19 +0300 Subject: [PATCH] ; * lisp/color.el (color-oklab-to-xyz): Doc fix. (cherry picked from commit dbd50ccd8e0f32054944f3016323f8e847ad167b) --- lisp/color.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/color.el b/lisp/color.el index 5ba73f4a879..79dced4e3d7 100644 --- a/lisp/color.el +++ b/lisp/color.el @@ -372,7 +372,7 @@ returned by `color-srgb-to-lab' or `color-xyz-to-lab'." (defun color-oklab-to-xyz (l a b) "Convert the OkLab color represented by L A B to CIE XYZ. Oklab is a perceptual color space created by Björn Ottosson -. It has the property that +. It has the property that changes in the hue and saturation of a color can be made while maintaining the same perceived lightness." (let ((ll (expt (+ (* 1.0 l) (* 0.39633779 a) (* 0.21580376 b)) 3)) -- 2.39.5