UNPKG

khroma

Version:

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

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