colorobjects
Version:
A collection of color objects and utilities
33 lines (22 loc) • 442 B
Markdown
🎨 The library with colors~!
```sh
> npm install colorobjects
> yarn add colorobjects
> bun add colorobjects
```
```ts
import colors, { Azure } from "colorobjects";
const ObjectAzure = colors.Blue.Azure; // #007FFF
const ExportedAzure = Azure; // #007FFF
```
```cjs
const { Azure } = require("colorobjects");
const ExportedAzure = Azure; // #007FFF
```