Skip to content

Latest commit

 

History

History
27 lines (21 loc) · 589 Bytes

check-if-a-string-is-a-hexadecimal-color.mdx

File metadata and controls

27 lines (21 loc) · 589 Bytes
category created title updated
Validator
2020-06-09
Check if a string is a hexadecimal color
2021-10-13

JavaScript version

const isHexColor = (color) => /^#([0-9A-F]{3}|[0-9A-F]{4}|[0-9A-F]{6}|[0-9A-F]{8})$/i.test(color);

TypeScript version

const isHexColor = (color: string): boolean => /^#([0-9A-F]{3}|[0-9A-F]{4}|[0-9A-F]{6}|[0-9A-F]{8})$/i.test(color);

Examples

isHexColor('#012'); // true
isHexColor('#A1B2C3'); // true
isHexColor('012'); // false
isHexColor('#GHIJKL'); // false