UNPKG

khroma

Version:

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

9 lines (8 loc) 199 B
/* IMPORT */ import Color from '../color/index.js'; /* MAIN */ const toKeyword = (color) => { return Color.format.keyword.stringify(Color.parse(color)); }; /* EXPORT */ export default toKeyword;