Metadata-Version: 2.5
Name: basedbuild-tailwind
Version: 1.0.1
Summary: Tailwind CSS v4 color palette plugin for based
Project-URL: Homepage, https://kipila.dev
Project-URL: Repository, https://github.com/kipila-dev/based
Author-email: Kipila Ltd <hello@kipila.dev>
License-Expression: Apache-2.0
Requires-Python: >=3.12
Requires-Dist: basedbuild
Description-Content-Type: text/markdown

# based-tailwind

Tailwind CSS v4 color palette plugin for `based`.

## Installation

```bash
pip install basedbuild-tailwind
```

## Usage

Load the plugin and reference colors via `tailwind.color.<name>.<shade>`:

```starlark
load("tailwind", "tailwind")

primary = Token("primary", tailwind.color.blue.c500)

target(
    id="acme",
    tokens=[primary],
    artifacts=[Artifact("css", "dist/assets")],
)
```

For the full list of available colors, see the
[Tailwind CSS documentation](https://tailwindcss.com/docs/colors).
