UNPKG

poli-charts

Version:

The best graphics for your Hedera Network application NFTs.

9 lines (8 loc) 268 B
export function validateHexColor(color) { const hexRegex = /^#([A-Fa-f0-9]{6}|[A-Fa-f0-9]{3})$/; if (!hexRegex.test(color)) { throw new Error( `POLI-CHARTS REPORT: -> Invalid color detected: ${color}. Make sure it is in HEX format.` ); } }