Skip to content
On this page

Home > @taiyuuki/utils > is_hex_color

is_hex_color() function

该函数检查给定的字符串是否是有效的十六进制颜色代码。

Signature:

typescript
declare function is_hex_color(color: string): boolean;
declare function is_hex_color(color: string): boolean;

Parameters

ParameterTypeDescription
colorstring参数“color”是一个字符串,表示十六进制格式的颜色值。它可以有一个可选的“#”符号开头,后跟 3 到 8 个字符,可以是数字 (0-9) 或字母(a-f 或 A-F)。

Returns:

boolean

函数 is_hex_color 返回一个布尔值,指示输入的 color 是否是有效的十六进制颜色代码。

Released under the MIT License.