tailwind-v4-utilities

tailwind-v4-utilities is a cursor rule for Cursor from RoninForge/roninforge-tailwind-v4. It costs 0 tokens per session (1,692 once invoked), scanned A, original, MIT.

Rules for using Tailwind CSS version 4 utility classes in templates and markup. Tailwind CSS is a system of small class names used to style web pages directly in HTML.

In plain words
What is it for?
Writing or reviewing Tailwind v4 markup with the correct class names and styling conventions.
Why use it?
It helps avoid outdated version 3 class names and covers version 4 utilities, gradients, container queries and accessibility patterns.

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-utilities
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-utilities

README.md
[![agentmods](https://agentmods.dev/badge/rules/roninforge/roninforge-tailwind-v4/tailwind-v4-utilities.svg)](https://agentmods.dev/rules/roninforge/roninforge-tailwind-v4/tailwind-v4-utilities)
Your own site
<a href="https://agentmods.dev/rules/roninforge/roninforge-tailwind-v4/tailwind-v4-utilities"><img src="https://agentmods.dev/badge/rules/roninforge/roninforge-tailwind-v4/tailwind-v4-utilities.svg" alt="Measured on agentmods" height="20"></a>
Per session 0 Nothing until a file matches its globs; then the whole rule loads.
When invoked 1,692 The whole file, excluding the scripts and references it only reads on demand.
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.00000 $0.01692
Opus 5 $0.00000 $0.00846
Sonnet 5 $0.00000 $0.00338
Haiku 4.5 $0.00000 $0.00169

Measured 5d ago against content hash c12751af2039, 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-utilities 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 5d 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-utilities.mdc · 219 lines

How it starts

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

Tailwind v4 Utility Classes

These rules apply when writing markup with Tailwind utility classes.

Utility Renames Quick Reference

When you are about to write any of these v3 classes, use the v4 replacement instead:

Instead of (v3) Write (v4)
shadow-sm shadow-xs
shadow shadow-sm
blur-sm blur-xs
blur blur-sm
rounded-sm rounded-xs
rounded rounded-sm
outline-none outline-hidden (preferred; outline-none still works but lacks forced-colors support)
overflow-ellipsis text-ellipsis
flex-grow grow
flex-grow-0 grow-0
flex-shrink shrink
flex-shrink-0 shrink-0
ring (bare) ring-3 (explicit width, v3 default was 3px)
border (bare, for gray) border border-gray-200 (explicit)
transform scale-75 scale-75 (no transform prefix)
transform-none scale-100 rotate-0 translate-x-0 translate-y-0 skew-x-0 skew-y-0

Opacity Always Uses the / Modifier

<!-- Background opacity -->
<div class="bg-black/50"></div>
<div class="bg-blue-500/75"></div>

<!-- Text opacity -->
<p class="text-white/80"></p>

<!-- Border opacity -->
<div class="border border-gray-300/50"></div>

<!-- Ring opacity -->
<div class="ring-2 ring-blue-500/50"></div>

Never use bg-opacity-*, text-opacity-*, border-opacity-*, or any other -opacity- utility.

Container Queries (Built-in)

Container queries are native in v4 - no plugin needed:

<div class="@container">
  <div class="grid grid-cols-1 @sm:grid-cols-2 @lg:grid-cols-3">
    <div class="p-4">Responsive to container, not viewport</div>
  </div>
</div>

Named containers:

<div class="@container/sidebar">
  <div class="@sm/sidebar:grid-cols-2">...</div>
</div>

Available sizes: @3xs (8rem), @2xs (12rem), @xs (16rem), @sm (20rem), @md (24rem), @lg (28rem), @xl (32rem), @2xl (36rem), @3xl (40rem), @4xl (44rem), @5xl (48rem), @6xl (52rem), @7xl (56rem).

Read the full file on GitHub · 219 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. 5d ago First seen · 219 lines · 0 tokens per session scan A c12751af2039

Subscribe to this mod's changes

tailwind-v4-utilities is a cursor rule published in the GitHub repository RoninForge/roninforge-tailwind-v4 (2 stars, last pushed 2mo ago), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 1,692 tokens. 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.

Related

Other cursor rules, from other repositories

html-css

Rules for HTML, CSS, and styling files.

inboxpraveen/Minimize-Cursor-Cost · 0 tokens

tinted-ui-tokens-skills

Generate a brand-tinted UI design-token system (CSS) from a single brand color. No pure neutral colors.

truman-t3/tinted-ui-tokens-skills · 23 tokens

compose-anti-patterns

Compose / Kotlin Android anti-pattern detector. Catches findViewById, setContentView(R.layout), GlobalScope, LiveData + observeAsState, MutableState exposed publicly, force-unwrap !!, lowercase composables, LazyColumn without key, LaunchedEffect(true), Material 2 imports, padding-before-clickable…

RoninForge/roninforge-kotlin-compose · 2,163 tokens

compose-core

Modern Android development rules: Kotlin 2.x with K2, Jetpack Compose, Material 3, state hoisting + StateFlow + collectAsStateWithLifecycle, Hilt with hiltViewModel(), type-safe Navigation Compose, KSP, Version Catalogs, Compose Compiler as Kotlin plugin.

RoninForge/roninforge-kotlin-compose · 2,288 tokens

compose-architecture

Android architecture patterns: feature modularization, repository + data source pattern, sealed interfaces for UI state, ViewModel + StateFlow, Ktor / Retrofit + Kotlin Serialization, Room with Flow returns + KSP, coroutines structured concurrency.

RoninForge/roninforge-kotlin-compose · 0 tokens

compose-testing

Compose testing: createComposeRule, semantic matchers, Paparazzi screenshot tests, Hilt + Compose test setup, runTest for coroutines, Turbine for Flow assertions, fake repositories over mocks. Agent-requested.

RoninForge/roninforge-kotlin-compose · 45 tokens