# enwind

> > _enwind_: v. to wind in or about

Latest version **0.5.0** (published 2024-09-10) · 0 weekly downloads

## Install

```sh
npm install enwind
pnpm add enwind
yarn add enwind
bun add enwind
```

## Health

**Score 25/100 (F)** — status: abandoned.

Positive: has types; esm support; no vulnerabilities.

Warnings: low downloads; pre 1.0.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 0.5.0 |
| Published | 2024-09-10 |
| First published | 2023-04-19 |
| Weekly downloads | 0 |
| TypeScript types | bundled |
| Module format | ESM + CommonJS |
| Dependencies | 1 |
| Unpacked size | 101 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| Maintainers | benkelly |

## Links

- npm: https://www.npmjs.com/package/enwind
- npm.io page: https://npm.io/package/enwind

## Dependencies (1)

- [tailwindcss](https://npm.io/package/tailwindcss.md) ^3.4.3

## Recent versions

- 0.5.0 (latest) — 2024-09-10
- 0.4.1 — 2024-09-03
- 0.4.0 — 2024-09-03
- 0.3.1 — 2023-08-05
- 0.3.0 — 2023-06-15
- 0.2.1 — 2023-05-02
- 0.2.0 — 2023-05-02
- 0.1.1 — 2023-04-19
- 0.1.0 — 2023-04-19

## README

# enwind

> _enwind_: v. to wind in or about

A simple design system written for use in my personal projects. I had a set of Tailwind components I was copy/pasting between projects that needed consolidating. I had a few hours to myself on a flight, so I whipped up this library.

## Usage

```bash
npm install enwind
```

Add the plugin to your `tailwind.config.js` file:

```js
import enwind from "enwind";

export default {
    // ...
    theme: {
        extend: {},
    },
    plugins: [
        enwind({
            // you can optionally enable strict mode to remove all non-enwind utility classes; defaults to `false`
            strict: true,
        }),
    ],
};
```

## Colors

Colors can be overridden in the `enwind` section of your Tailwind config:

```json
{
    "theme": {
        "extend": {
            "enwind": {
                "colors": {
                    "dark": {
                        "body": {
                            "DEFAULT": "#ccc"
                        }
                    }
                }
            }
        }
    }
}
```

Default values can be found in [colors.ts](./src/colors.ts).

---
_Source: https://npm.io/package/enwind · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
