スキル一覧に戻る
iurygdeoliveira

style-tailwind

by iurygdeoliveira

Repositorio destinado a fornecer um kit inicial para desenvolvimento de SaaS usando laravel e filament

29🍴 12📅 2026年1月20日
GitHubで見るManusで実行

SKILL.md


name: style-tailwind description: Enforces Tailwind CSS v4 standards, including CSS-first configuration and new utility syntax.

Tailwind v4 Styling Skill

Use this skill whenever writing CSS or applying classes. Tailwind v4 behaves differently from v3 (No config js, dynamic values).

When to use this skill

  • When applying styles to Blade/Flux components.
  • When creating custom CSS files.
  • When configuring theme colors/fonts.

Workflow

1. Configuration (CSS-First)

Do NOT look for tailwind.config.js. Theme extensions happen in CSS:

@theme {
    --color-brand: oklch(0.72 0.11 178);
    --font-sans: "Inter", sans-serif;
}

2. Deprecated Utilities (DO NOT USE)

DeprecatedReplacement
bg-opacity-50bg-black/50
text-opacity-25text-black/25
flex-growgrow
flex-shrinkshrink

3. Dynamic Values

Tailwind v4 allows dynamic values without configuration:

  • Use w-[153px] freely.
  • Use bg-[#123456] freely.

4. Dark Mode

  • Unless specified otherwise, always include Dark Mode support.
  • Use dark: modifier: <div class="bg-white dark:bg-zinc-800">.
  • Colors: Prefer semantic names (bg-zinc-100) over absolute ones (bg-gray-100) for better dark mode adaptation.

スコア

総合スコア

80/100

リポジトリの品質指標に基づく評価

SKILL.md

SKILL.mdファイルが含まれている

+20
LICENSE

ライセンスが設定されている

+10
説明文

100文字以上の説明がある

+10
人気

GitHub Stars 100以上

0/15
最近の活動

3ヶ月以内に更新

+5
フォーク

10回以上フォークされている

+5
Issue管理

オープンIssueが50未満

+5
言語

プログラミング言語が設定されている

+5
タグ

1つ以上のタグが設定されている

+5

レビュー

💬

レビュー機能は近日公開予定です