UNPKG

khroma

Version:

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

17 lines (8 loc) 231 B
/* IMPORT */ import Color from '~/color'; /* MAIN */ const toKeyword = ( color: string ): string | undefined => { return Color.format.keyword.stringify ( Color.parse ( color ) ); }; /* EXPORT */ export default toKeyword;