Skip to content
On this page

Home > @taiyuuki/utils > get_contrast_color

get_contrast_color() function

该函数将颜色作为输入,并根据输入颜色的亮度返回黑色或白色作为对比色。

Signature:

typescript
declare function get_contrast_color(color: Color): "black" | "white";
declare function get_contrast_color(color: Color): "black" | "white";

Parameters

ParameterTypeDescription
colorColor颜色参数是表示十六进制颜色代码的字符串(例如“#FF0000”表示红色)或表示 RGB 颜色的对象(例如 [255, 0, 0] 表示红色)。

Returns:

"black" | "white"

字符串“black”或“white”,具体取决于输入颜色的计算 YIQ 值。

Released under the MIT License.