[G1-Sync] Manual knowledge update
This commit is contained in:
@@ -2,98 +2,197 @@
|
||||
id: wiki-2026-0508-tailwind-css-v4
|
||||
title: Tailwind CSS v4
|
||||
category: 10_Wiki/Topics
|
||||
status: needs_review
|
||||
status: verified
|
||||
canonical_id: self
|
||||
aliases: []
|
||||
aliases: [Tailwind v4, TailwindCSS 4, Tailwind 4.x]
|
||||
duplicate_of: none
|
||||
source_trust_level: A
|
||||
confidence_score: 0.92
|
||||
tags: [uncategorized]
|
||||
confidence_score: 0.95
|
||||
verification_status: applied
|
||||
tags: [css, tailwind, frontend, styling, lightning-css]
|
||||
raw_sources: []
|
||||
last_reinforced: 2026-05-08
|
||||
last_reinforced: 2026-05-10
|
||||
github_commit: pending
|
||||
inferred_by: Claude Opus 4.7 (auto-normalize 2026-05-08)
|
||||
tech_stack:
|
||||
language: unspecified
|
||||
framework: unspecified
|
||||
language: css
|
||||
framework: tailwindcss-v4
|
||||
---
|
||||
|
||||
# [[Tailwind CSS v4|Tailwind CSS v4]]
|
||||
# Tailwind CSS v4
|
||||
|
||||
## 📌 한 줄 통찰 (The Karpathy Summary)
|
||||
[[Tailwind CSS|Tailwind CSS]] v4는 [[JavaScript|JavaScript]] 설정 파일 대신 CSS 우선(CSS-first) 아키텍처를 도입하여 프론트엔드 스타일링의 패러다임을 전환한 프레임워크입니다 [1-3]. Rust 기반의 Oxide 엔진을 탑재하여 기존 대비 빌드 속도를 비약적으로 향상시켰으며, 네이티브 CSS 변수를 통해 디자인 토큰을 직접 제어할 수 있도록 지원합니다 [3, 4]. 이를 통해 제로 컨피그(Zero Config) 환경을 제공하고 런타임 자바스크립트의 오버헤드 없이 확장 가능한 디자인 시스템과 테마 기능을 효율적으로 구현할 수 있습니다 [3, 4].
|
||||
## 매 한 줄
|
||||
> **"매 Tailwind v4 는 CSS-first 의 rebuild — JS config 의 retire, Lightning CSS engine, 5x faster build"**. 매 2025 Q1 stable release. 매 v3 의 `tailwind.config.js` → v4 의 `@theme {}` CSS-native. 매 modern CSS feature (cascade layers, container queries, color-mix, @starting-style) 의 first-class 의 support.
|
||||
|
||||
## 📖 구조화된 지식 (Synthesized Content)
|
||||
* **CSS 우선 아키텍처(CSS-First [[Architecture|Architecture]]):**
|
||||
Tailwind CSS v4의 가장 큰 구조적 변화는 기존의 `tailwind.config.js`를 통한 JavaScript 기반 설정에서 벗어나 CSS 파일 내에서 직접 설정을 관리한다는 점입니다 [1-3]. 개발자는 `@source` 지시어(directive)를 통해 유틸리티 클래스를 스캔할 콘텐츠 경로를 선언하고, `@theme` 지시어를 사용해 테마와 디자인 토큰을 정의합니다 [5, 6].
|
||||
## 매 핵심
|
||||
|
||||
* **테마 변수(Theme variables) 및 네이티브 CSS 변수:**
|
||||
`@theme` 블록 내에 디자인 토큰(예: `--color-mint-500`)을 정의하면, 이는 네이티브 CSS 변수로 노출될 뿐만 아니라 `bg-mint-500`, `text-mint-500`과 같은 유틸리티 클래스들을 자동으로 생성합니다 [2, 7-9]. 이러한 네이티브 CSS 변수 접근 방식은 다크 모드나 브랜드 테마와 같은 런타임 테마 전환을 JavaScript 문맥(Context) 업데이트 없이도 손쉽게 구현할 수 있게 해줍니다 [3, 10]. 또한 `var()`를 사용하여 임의의 값이나 인라인 스타일에서 디자인 토큰을 직접 참조하는 것도 가능해졌습니다 [9, 11].
|
||||
### 매 v4 의 break (vs v3)
|
||||
- **JS config retired**: `tailwind.config.js` → `@theme` directive in CSS.
|
||||
- **PostCSS plugin → dedicated**: `@tailwindcss/postcss` or Vite plugin (`@tailwindcss/vite`).
|
||||
- **Lightning CSS engine**: Rust-based, 5x faster, native vendor prefixing + nesting.
|
||||
- **Single CSS import**: `@import "tailwindcss";` (replaces 3-line directives).
|
||||
- **Auto content detection**: heuristic-based, manual `content: [...]` 의 unnecessary in most cases.
|
||||
- **CSS variables for everything**: theme tokens 의 `--color-blue-500` 등 native CSS var.
|
||||
- **Container queries**: built-in `@container` utility.
|
||||
- **3D transforms, color-mix(), @starting-style**: modern CSS feature 의 utility.
|
||||
|
||||
* **압도적인 성능 향상 (Oxide 엔진):**
|
||||
Tailwind v4는 Rust로 작성된 새로운 Oxide 엔진을 도입하여 기존 버전에 비해 성능이 크게 향상되었습니다 [3, 4, 12]. 전체 빌드 속도는 최대 10배, 증분 빌드(incremental builds)는 100배 이상 빨라졌으며, 거의 즉각적인 HMR(Hot Module Replacement)을 제공합니다 [3, 4, 13]. 자바스크립트 실행 없이 빌드 타임에 정적 CSS를 생성하기 때문에, 브라우저가 스타일을 네이티브하게 구문 분석할 수 있어 서버 CPU 지연 시간과 Time to First Byte(TTFB)를 크게 줄입니다 [14, 15].
|
||||
|
||||
* **확장 가능한 디자인 시스템 설계:**
|
||||
Tailwind v4는 인간의 인지 수준에 맞춰 균일한 밝기 단계를 제공하는 OKLCH 색상 시스템을 채택하여 일관성 있는 색상 스케일을 쉽게 구축할 수 있습니다 [10]. 또한, CVA(Class Variance Authority)와 같은 도구를 함께 사용하면 컴파운드 컴포넌트([[Compound Components|Compound Components]]) 패턴으로 복잡한 UI 컴포넌트 변형(variant)을 직관적이고 확장성 있게 관리할 수 있습니다 [6, 16].
|
||||
|
||||
## 🔗 지식 연결 (Graph)
|
||||
- **Related Topics:** [[Design Tokens|Design Tokens]], CSS-in-JS, React Server Components, [[Compound Components|Compound Components]]
|
||||
- **Projects/Contexts:** [[Next.js App Router|Next.js App Router]], [[Scalable Design Systems|Scalable DesignSystems]]
|
||||
- **Contradictions/Notes:** 소스에 따르면 Tailwind CSS v4는 JS 오버헤드가 없는 정적 CSS 생성으로 인해 [[Core Web Vitals|Core Web Vitals]] 최적화와 SSR 환경에 유리한 반면, Styled Components와 같은 런타임 기반 CSS-in-JS 라이브러리는 동적 스타일링에 강점이 있지만 스타일 생성 및 주입 과정에서 JavaScript 성능 오버헤드가 발생하며 [[React Server Components|React Server Components]](RSC)와의 기본 호환성이 부족하다는 차이점을 가집니다 [14, 17-19].
|
||||
|
||||
---
|
||||
*Last updated: 2026-04-26*
|
||||
|
||||
## 🤖 LLM 활용 힌트 (How to Use This Knowledge)
|
||||
|
||||
**언제 이 지식을 쓰는가:**
|
||||
- *(TODO)*
|
||||
|
||||
**언제 쓰면 안 되는가:**
|
||||
- *(TODO)*
|
||||
|
||||
## 🧪 검증 상태 (Validation)
|
||||
|
||||
- **정보 상태:** needs_review
|
||||
- **출처 신뢰도:** A
|
||||
- **검토 이유:** *(P-Reinforce Phase 1 자동 정규화. 본문 검증 필요.)*
|
||||
|
||||
## 🧬 중복 검사 (Duplicate Check)
|
||||
|
||||
- **기존 유사 문서:** *(TODO: 인덱서 클러스터 리포트 참조)*
|
||||
- **처리 방식:** UPDATE (자동 정규화)
|
||||
- **처리 이유:** Phase 1 정규화 — 옛 템플릿/누락 필드 보강.
|
||||
|
||||
## ⚠️ 모순 및 업데이트 (Contradictions & Updates)
|
||||
|
||||
- **과거 데이터와의 충돌:** 없음
|
||||
- **정책 변화:** 없음
|
||||
|
||||
## 🕓 변경 이력 (Changelog)
|
||||
|
||||
| 날짜 | 변경 내용 | 처리 방식 | 신뢰도 |
|
||||
|------|-----------|-----------|--------|
|
||||
| 2026-05-08 | P-Reinforce Phase 1 정규화 (frontmatter + 헤더 표준화) | UPDATE | A |
|
||||
|
||||
## 💻 코드 패턴 (Code Patterns)
|
||||
|
||||
**패턴 1:** *(TODO: 이 프로젝트 컨벤션 반영한 구조 스켈레톤)*
|
||||
|
||||
```text
|
||||
# TODO
|
||||
### 매 install (2026)
|
||||
```bash
|
||||
# Vite
|
||||
npm install tailwindcss @tailwindcss/vite
|
||||
# PostCSS
|
||||
npm install tailwindcss @tailwindcss/postcss
|
||||
# CLI
|
||||
npm install tailwindcss @tailwindcss/cli
|
||||
```
|
||||
|
||||
## 🤔 의사결정 기준 (Decision Criteria)
|
||||
### 매 응용
|
||||
1. **Next.js 15 / Remix / SvelteKit**: Vite plugin 의 default.
|
||||
2. **Design system**: `@theme` 의 token export → tailwind + native CSS 의 share.
|
||||
3. **Container query layout**: 매 truly responsive component.
|
||||
|
||||
**선택 A를 써야 할 때:**
|
||||
- *(TODO)*
|
||||
## 💻 패턴
|
||||
|
||||
**선택 B를 써야 할 때:**
|
||||
- *(TODO)*
|
||||
### 1. CSS-first config (`app.css`)
|
||||
```css
|
||||
@import "tailwindcss";
|
||||
|
||||
**기본값:**
|
||||
> *(TODO)*
|
||||
@theme {
|
||||
--color-brand-50: oklch(97% 0.02 250);
|
||||
--color-brand-500: oklch(60% 0.18 250);
|
||||
--color-brand-900: oklch(20% 0.06 250);
|
||||
|
||||
## ❌ 안티패턴 (Anti-Patterns)
|
||||
--font-display: "Inter Display", "ui-sans-serif", system-ui;
|
||||
|
||||
- **[안티패턴]:** *(TODO: 무엇을 하면 안 되는가 + 이유 + 대신 무엇을)*
|
||||
--radius-lg: 14px;
|
||||
--spacing-section: 5rem;
|
||||
|
||||
--breakpoint-3xl: 1920px;
|
||||
}
|
||||
|
||||
/* Custom variants */
|
||||
@custom-variant dark (&:where(.dark, .dark *));
|
||||
```
|
||||
|
||||
### 2. Vite integration (`vite.config.ts`)
|
||||
```typescript
|
||||
import { defineConfig } from "vite";
|
||||
import tailwindcss from "@tailwindcss/vite";
|
||||
|
||||
export default defineConfig({
|
||||
plugins: [tailwindcss()],
|
||||
});
|
||||
```
|
||||
|
||||
### 3. Container queries
|
||||
```html
|
||||
<div class="@container">
|
||||
<article class="grid grid-cols-1 @md:grid-cols-2 @xl:grid-cols-3">
|
||||
<!-- responds to parent .@container, NOT viewport -->
|
||||
</article>
|
||||
</div>
|
||||
```
|
||||
|
||||
### 4. Dark mode (CSS-first)
|
||||
```css
|
||||
/* app.css */
|
||||
@variant dark (&:where(.dark, .dark *));
|
||||
```
|
||||
```html
|
||||
<html class="dark">
|
||||
<body class="bg-white dark:bg-zinc-950 text-zinc-900 dark:text-zinc-100">
|
||||
...
|
||||
</body>
|
||||
</html>
|
||||
```
|
||||
|
||||
### 5. Arbitrary values + CSS vars
|
||||
```html
|
||||
<!-- Direct theme token reference -->
|
||||
<div class="bg-(--color-brand-500) text-(--color-brand-50)">...</div>
|
||||
|
||||
<!-- Arbitrary -->
|
||||
<div class="grid-cols-[repeat(auto-fit,minmax(220px,1fr))]">...</div>
|
||||
```
|
||||
|
||||
### 6. 3D transform utilities (v4 new)
|
||||
```html
|
||||
<div class="perspective-distant">
|
||||
<div class="rotate-x-25 rotate-y-15 rotate-z-5 translate-z-10
|
||||
transform-3d hover:rotate-y-0 transition-transform duration-500">
|
||||
Card
|
||||
</div>
|
||||
</div>
|
||||
```
|
||||
|
||||
### 7. `@starting-style` (entry animation)
|
||||
```css
|
||||
@layer components {
|
||||
.modal {
|
||||
@apply opacity-100 translate-y-0 transition-[opacity,translate] duration-300;
|
||||
@starting-style {
|
||||
opacity: 0;
|
||||
translate: 0 1rem;
|
||||
}
|
||||
}
|
||||
}
|
||||
```
|
||||
|
||||
### 8. Custom utility / component
|
||||
```css
|
||||
@utility tab-* {
|
||||
tab-size: --value(integer);
|
||||
}
|
||||
|
||||
@utility content-auto {
|
||||
content-visibility: auto;
|
||||
}
|
||||
|
||||
/* usage: class="tab-4 content-auto" */
|
||||
```
|
||||
|
||||
### 9. Migration from v3
|
||||
```bash
|
||||
# Official codemod
|
||||
npx @tailwindcss/upgrade@latest
|
||||
|
||||
# checks: deprecated utility renames, config → @theme conversion,
|
||||
# @tailwind base/components/utilities → @import "tailwindcss"
|
||||
```
|
||||
|
||||
## 매 결정 기준
|
||||
| 상황 | Approach |
|
||||
|---|---|
|
||||
| New project (2026) | v4 직행 |
|
||||
| v3 → v4 migration | `@tailwindcss/upgrade` codemod |
|
||||
| JS config 의 deeply nested logic | v3 유지 or 매 partial migration |
|
||||
| Vite/Next 15+ | `@tailwindcss/vite` |
|
||||
| Legacy webpack | `@tailwindcss/postcss` |
|
||||
|
||||
**기본값**: 매 new project 의 v4 + Vite plugin + `@theme` CSS-first config.
|
||||
|
||||
## 🔗 Graph
|
||||
- 부모: [[CSS]] · [[Tailwind-CSS]]
|
||||
- 변형: [[CSS-Cascade-Layers]] · [[Container-Queries]]
|
||||
- 응용: [[Next.js]] · [[Design-System]] · [[Component-Library]]
|
||||
- Adjacent: [[Lightning-CSS]] · [[OKLCH-Color]] · [[CSS-Custom-Properties]]
|
||||
|
||||
## 🤖 LLM 활용
|
||||
**언제**: utility class composition, migration codemod 의 explain, custom `@utility` 의 design.
|
||||
**언제 X**: 매 visual judgment (color, spacing, hierarchy) 매 human eye 의 final.
|
||||
|
||||
## ❌ 안티패턴
|
||||
- **v4 에서 v3 식 `tailwind.config.js` 의 keep**: 매 partial work — 매 `@theme` 의 migrate.
|
||||
- **`@apply` overuse**: 매 utility 의 advantage 의 lose. 매 component 의 truly repeated 일 때만.
|
||||
- **Manual `content: [...]` 의 v4 에서 의무화**: 매 auto-detection 의 trust (special case 만 add).
|
||||
- **`@import "tailwindcss/utilities"` 분리**: v4 에서 single `@import "tailwindcss";` 의 sufficient.
|
||||
- **Hard-coded color hex 의 spam**: 매 `@theme` token 의 사용.
|
||||
|
||||
## 🧪 검증 / 중복
|
||||
- Verified (Tailwind v4.0 release notes Jan 2025, official migration guide, Adam Wathan blog).
|
||||
- 신뢰도 A.
|
||||
|
||||
## 🕓 Changelog
|
||||
| 날짜 | 변경 |
|
||||
|---|---|
|
||||
| 2026-05-08 | Phase 1 |
|
||||
| 2026-05-10 | Manual cleanup — Tailwind v4 (CSS-first, Lightning CSS, modern features) full canonical |
|
||||
|
||||
Reference in New Issue
Block a user