UNPKG

khroma

Version:

A collection of functions for manipulating CSS colors, inspired by SASS.

15 lines (14 loc) 237 B
/* IMPORT */ import Color from '../color/index.js'; /* MAIN */ const isValid = (color) => { try { Color.parse(color); return true; } catch { return false; } }; /* EXPORT */ export default isValid;