Skip to content
On this page

Home > @taiyuuki/utils > hsl_to_rgb

hsl_to_rgb() function

该函数将 HSL 格式的颜色转换为 RGB 格式。

Signature:

typescript
declare function hsl_to_rgb(hsl: HslColor): RgbColor;
declare function hsl_to_rgb(hsl: HslColor): RgbColor;

Parameters

ParameterTypeDescription
hslHslColor表示 HSL 颜色值的四个数字的数组:色调 (0-360)、饱和度 (0-1)、亮度 (0-1) 和 alpha (0-1)。

Returns:

RgbColor

函数“hsl_to_rgb”返回一个 RGB 颜色数组,具有三个值(红色、绿色、蓝色)或四个值(红色、绿色、蓝色、alpha),具体取决于输入 HSL 颜色是否具有 alpha 值。

Released under the MIT License.