khroma
Version:
A collection of functions for manipulating CSS colors, inspired by SASS.
21 lines (12 loc) • 341 B
text/typescript
/* IMPORT */
import _ from '~/utils';
/* MAIN */
const DEC2HEX: Record<number, string> = {};
for ( let i = 0; i <= 255; i++ ) DEC2HEX[i] = _.unit.dec2hex ( i ); // Populating dynamically, striking a balance between code size and performance
const TYPE = <const> {
ALL: 0,
RGB: 1,
HSL: 2
};
/* EXPORT */
export {DEC2HEX, TYPE};