Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jozan/tailwind
collection of tailwind plugins
https://github.com/jozan/tailwind
Last synced: 30 days ago
JSON representation
collection of tailwind plugins
- Host: GitHub
- URL: https://github.com/jozan/tailwind
- Owner: jozan
- License: mit
- Created: 2024-04-27T20:04:52.000Z (10 months ago)
- Default Branch: main
- Last Pushed: 2024-04-28T22:04:54.000Z (10 months ago)
- Last Synced: 2024-04-29T21:40:02.530Z (10 months ago)
- Language: TypeScript
- Size: 48.8 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# `@latehours/tailwind` 💨
![GitHub Actions Workflow Status](https://img.shields.io/github/actions/workflow/status/jozan/tailwind/build.yml?branch=main&style=flat)
![Dependencies amount 0](https://img.shields.io/badge/dependencies%20-%200%20-%200?style=flat)
![NPM Downloads](https://img.shields.io/npm/dm/%40latehours%2Ftailwind?style=flat)
![NPM Version](https://img.shields.io/npm/v/%40latehours%2Ftailwind?style=flat)
![GitHub License](https://img.shields.io/github/license/jozan/tailwind?style=flat)
![Made with vacuum cleaner](https://img.shields.io/badge/made%20with%20-%20husqvarna%20vacuum%20cleaner%20-%20made%20with%20husqvarna?style=flat&logo=husqvarna)
[![package size](https://deno.bundlejs.com/?q=%40latehours/tailwind/ligatures&badge=detailed&badge-style=flat&label=size)](https://bundlejs.com/?q=%40latehours/tailwind/ligatures)**`@latehours/tailwind`** is collection of plugins for
[Tailwind CSS](https://tailwindcss.com) that i need often enough.is has **zero dependencies**. ofc you need to have `tailwindcss` set up
in your project.## usage
install the library using your package manager of choice:
```sh
npm install @latehours/tailwind
pnpm install @latehours/tailwind
bun add @latehours/tailwind
yarn add @latehours/tailwind
```### `ligatures` plugin
define how ligatures should behave.
in your `tailwind.config.mjs`:
```typescript
import { ligatures } from "@latehours/tailwind/ligatures";/** @type {import('tailwindcss').Config} */
export default {
plugins: [ligatures()],
}
```in your `file.html` or `component.tsx`:
```html
no ligaturesnormal ligaturesno ligaturescommon ligaturesno common ligaturesdiscretionary ligaturesno discretionary ligatureshistorical ligaturesno historical ligaturescontextual ligaturesno contextual ligatures
```### `cn` utility
merge classnames together.
first add `clsx` and `tailwind-merge` to your deps then you can use `cn`:
```typescript
import { cn } from "@latehours/tailwind/cn";const padding = "p-4";
const classes = cn("text-red-500", "bg-blue-500", padding);
```### `cond` utility
opinionated way to conditionally add classes. most useful when
combined with `cn`.first add `clsx` to your deps then you can use `cond`:
```typescript
import { cn } from "@latehours/tailwind/cn";
import { cond } from "@latehours/tailwind/cond";state === "disabled", "bg-gray-500"),
)}
/>
```### `condc` utility
similar to `cond` but is curried. most useful when combined
with `cn`.first add `clsx` to your deps then you can use `condc`:
```typescript
import { cn } from "@latehours/tailwind/cn";
import { condc } from "@latehours/tailwind/condc";const isState = condc(state);
```## development
To install dev dependencies:
```bash
bun install
```when creating commits follow the [conventional commits](https://www.conventionalcommits.org)
format.