Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

interpolateLab

Returns a Lab color space interpolator between the two colors a and b. The colors a and b need not be in Lab; they will be converted to Lab using d3.lab. The return value of the interpolator is an RGB string.

function interpolateLab(a: string | ColorCommonInstance, b: string | ColorCommonInstance): ((t: number) => string);
§
interpolateLab(a: string | ColorCommonInstance, b: string | ColorCommonInstance): ((t: number) => string)
[src]

§Return Type

§
((t: number) => string)
[src]