mirror of
https://github.com/quine-global/hyper.git
synced 2026-01-13 04:28:41 -09:00
5 lines
147 B
TypeScript
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};
|