Skip to content

pantoken / renderers/react-markdown/src / isColorValue

Hàm: isColorValue()

isColorValue(value): boolean

Beta

Đúng khi một chuỗi là một giá trị màu CSS độc lập (hex hoặc một hàm màu).

Tham số

value

string

Trả về

boolean

Ví dụ

ts
import { isColorValue } from "@pantoken/react-markdown";

isColorValue("#03893D"); // true
isColorValue("oklch(0.7 0.1 200)"); // true
isColorValue("hello"); // false