UNPKG

colorobjects

Version:

A collection of color objects and utilities

33 lines (22 loc) 442 B
# ColorObjects 🎨 The library with colors~! ### Installation ```sh # npm > npm install colorobjects # yarn > yarn add colorobjects # bun > bun add colorobjects ``` ### Usage ```ts import colors, { Azure } from "colorobjects"; const ObjectAzure = colors.Blue.Azure; // #007FFF const ExportedAzure = Azure; // #007FFF ``` ### Usage (CJS) ```cjs const { Azure } = require("colorobjects"); const ExportedAzure = Azure; // #007FFF ```