hyper/builder/test/testUtils/is-hex-color.ts
2025-08-10 02:06:07 -04:00

5 lines
147 B
TypeScript

function isHexColor(color: string) {
return /(^#[0-9A-F]{6,8}$)|(^#[0-9A-F]{3}$)/i.test(color); // https://regex101.com/
}
export {isHexColor};