tailwind-v4-anti-patterns

tailwind-v4-anti-patterns is a cursor rule for Cursor from RoninForge/roninforge-tailwind-v4. It costs 1,399 tokens per session, scanned A, original, MIT.

A set of rules for spotting common mistakes when using Tailwind CSS version 4, a tool for styling web pages with ready-made utility classes.

In plain words
What is it for?
It is for reviewing or writing Tailwind v4 setup and styles, including the CSS-based configuration, correct build integration, and version-specific utility usage.
Why use it?
It helps avoid using configuration files, packages, and utilities from older Tailwind versions that no longer fit version 4.

Cursor rule for Cursor

Written for Cursor: a Cursor rule (.mdc).

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add rules/roninforge/roninforge-tailwind-v4/tailwind-v4-anti-patterns
Clone the repo
git clone --depth 1 https://github.com/RoninForge/roninforge-tailwind-v4

Made for: Cursor.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for tailwind-v4-anti-patterns

README.md
[![agentmods](https://agentmods.dev/badge/rules/roninforge/roninforge-tailwind-v4/tailwind-v4-anti-patterns.svg)](https://agentmods.dev/rules/roninforge/roninforge-tailwind-v4/tailwind-v4-anti-patterns)
Your own site
<a href="https://agentmods.dev/rules/roninforge/roninforge-tailwind-v4/tailwind-v4-anti-patterns"><img src="https://agentmods.dev/badge/rules/roninforge/roninforge-tailwind-v4/tailwind-v4-anti-patterns.svg" alt="Measured on agentmods" height="20"></a>
Per session 1,399 This file is loaded in full into every session.
When invoked 1,399 The same file — it is already loaded in full.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.01399 $0.01399
Opus 5 $0.00700 $0.00700
Sonnet 5 $0.00280 $0.00280
Haiku 4.5 $0.00140 $0.00140

Measured 6d ago against content hash 7653a8f5d0e8, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-06, from the pricing page.

Security

Grade A, and why

tailwind-v4-anti-patterns scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 6d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

rules/tailwind-v4-anti-patterns.mdc · 205 lines

How it starts

The opening of the file, as written. The whole thing — 205 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Tailwind v4 Anti-Patterns

These are the patterns AI models generate most frequently when working with Tailwind v4 projects. Every one of them is wrong. If you catch yourself generating any of these, stop and correct immediately.

Anti-Pattern 1: Creating tailwind.config.js in a New Project

If starting a new Tailwind v4 project, do NOT create a tailwind.config.js or tailwind.config.ts file. Configuration lives in CSS:

/* All config goes here, in your main CSS file */
@import "tailwindcss";

@theme {
  --color-primary: #3b82f6;
  --font-sans: "Inter", sans-serif;
}

The only exception: migrating an existing v3 project where you explicitly need @config "../../tailwind.config.js" as a bridge.

Anti-Pattern 2: Installing Wrong Packages

Do NOT install these v3-era packages:

  • tailwindcss as a PostCSS plugin directly (use @tailwindcss/postcss or @tailwindcss/vite)
  • autoprefixer (handled by Tailwind v4 internally)
  • postcss-import (handled by Tailwind v4 internally)

Correct v4 installation:

For Vite projects:

npm install -D tailwindcss @tailwindcss/vite

For PostCSS projects:

npm install -D tailwindcss @tailwindcss/postcss

Anti-Pattern 3: Using @tailwind Directives

/* WRONG - v3 syntax */
@tailwind base;
@tailwind components;
@tailwind utilities;

/* CORRECT - v4 syntax */
@import "tailwindcss";

Anti-Pattern 4: Using Opacity Utilities

These classes do not exist in v4:

  • bg-opacity-*
  • text-opacity-*
  • border-opacity-*
  • divide-opacity-*
  • placeholder-opacity-*
  • ring-opacity-*

Always use the / modifier syntax: bg-red-500/50, text-white/80.

Anti-Pattern 5: Relying on Default Border/Ring Colors

If you write class="border" without a color, the border will be currentColor in v4 (not gray-200 as in v3). Same for ring (1px currentColor instead of 3px blue-500).

Always be explicit:

<div class="border border-gray-200"></div>
<div class="ring-3 ring-blue-500"></div>

Read the full file on GitHub · 205 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 6d ago First seen · 205 lines · 1,399 tokens per session scan A 7653a8f5d0e8

Subscribe to this mod's changes

tailwind-v4-anti-patterns is a cursor rule published in the GitHub repository RoninForge/roninforge-tailwind-v4 (2 stars, last pushed 2mo ago), licensed MIT. It adds 1,399 tokens to every session, about $0.0070 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.