Files
2nd/10_Wiki/Topics/Domain_Programming/Topic_W3CSS/W3CSS_Versions.md
T
Antigravity Agent c24165b8bc refactor(topics): 멀티 에이전트용 지식 재편 — _Common(공통 기본기) + Domain_* 구조
에이전트 8종(대화형/프로그래머 C·S/디자이너/설계자/기획자/QA/PD/PM)에게
[공통 기본 능력 + 롤별 Specialty] 2층으로 지식을 주입하기 위한 재분류.
문서 내용·포맷은 무수정, 폴더 이동만 (6,372개 문서 수 보존 확인).

- Topic_Programming → Domain_Programming (내부 구조 보존)
- Topic_Graphic → Domain_Design
- Topic_Business → Domain_Product
- Topic_General → Domain_General
- _Common 신설: Math(구 Topic_Math_Specialty), Reasoning(구 General/From_Thinking & Reasoning),
  Reasoning_Creativity(구 General/From_창의성), Communication(Poetic_Blog_Writing + From_writing)
- 타 도메인의 From_* 폴더는 유지 (출처 표기일 뿐, 이미 도메인에 맞게 분류된 문서)
- 빈 폴더 정리 (memory/procedures)
- 에이전트→폴더 매핑은 workspace의 .astra/agent-knowledge-map.json (9개 에이전트)

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
2026-07-11 11:05:56 +09:00

3.8 KiB

id, title, category, status, verification_status, canonical_id, aliases, duplicate_of, source_trust_level, confidence_score, created_at, updated_at, review_reason, merge_history, tags, raw_sources, applied_in, github_commit
id title category status verification_status canonical_id aliases duplicate_of source_trust_level confidence_score created_at updated_at review_reason merge_history tags raw_sources applied_in github_commit
w3css-versions W3CSS Versions Programming_Language draft conceptual
w3pro.css
W3.CSS Pro
W3.CSS 버전
B 0.83 2026-07-04 2026-07-04
w3css
css-framework
w3schools
versions
theming
https://www.w3schools.com/w3css/w3css_versions.asp

W3CSS Versions

🎯 한 줄 통찰 (One-line insight)

"W3.CSS Pro" (w3pro.css) is smaller and faster not because of general minification, but specifically because it ships with NO colors defined at all — every w3-<color> rule is stripped out — meaning it's designed as a blank canvas for developers who want to supply their own complete color system (inline <style> overrides, a theme file, or a color library) instead of using W3.CSS's built-in palette. [S1]

🧠 핵심 개념 (Core concepts)

  • Version history — 3.01 (Dec 2017) → 4.01 (Nov 2018) → 4.15 (Dec 2020) → 5.01 (Mar 2025, latest). [S1]
  • W3.CSS Pro (w3pro.css) — a leaner variant with all color classes removed, meant to pair with custom theming rather than the default palette. [S1]
  • Three ways to add colors to Pro — (1) inline <style> block overriding e.g. .w3-amber, (2) linking a pre-made theme file (w3-theme-amber.css), or (3) linking an entire color library (w3-colors-2018.css, w3-colors-2017.css). [S1]
  • !important in theme overrides — theme color definitions use !important (e.g. .w3-amber{color:#000!important;background-color:#ffc107!important}) to guarantee they override any conflicting base styles. [S1]

📖 세부 내용 (Details)

  • Custom inline color override for Pro: <style>.w3-amber{color:#000!important;background-color:#ffc107!important}</style>. [S1]
  • Loading a prebuilt theme file: <link rel="stylesheet" href="/lib/w3-theme-amber.css">. [S1]
  • Loading an entire color library: <link rel="stylesheet" href="/lib/w3-colors-2018.css">. [S1]

⚖️ 모순 및 업데이트 (Contradictions & updates)

  • Pro 버전의 "가벼움"의 실제 원인: 단순 압축이 아니라 색상 클래스 전체를 제거했기 때문에 더 작고 빠르다는 점이 명시적으로 설명됨 — 커스텀 색상/테마를 직접 공급하는 개발자를 위한 설계. [S1]

🛠️ 적용 사례 (Applied in summary)

현재 발견된 실제 적용 사례가 없습니다 — Pro 버전 + 커스텀 테마 파일 조합이 다음 챕터(Mobile App 구축)에서 실제 앱 색상 테마 적용 사례로 이어진다. [S1]

💻 코드 패턴 (Code patterns)

Defining a custom color for the colorless W3.CSS Pro build (HTML/CSS):

<link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3pro.css">
<style>
.w3-amber{color:#000!important;background-color:#ffc107!important}
</style>

검증 상태 및 신뢰도

  • 상태: draft
  • 검증 단계: conceptual
  • 출처 신뢰도: B (W3Schools — widely used educational reference, not a primary standards body)
  • 신뢰 점수: 0.83
  • 중복 검사 결과: 신규 생성 (New discovery)

🔗 지식 그래프 (Knowledge Graph)

📚 출처 (Sources)

📝 변경 이력 (Change history)

  • 2026-07-04: Initial draft synthesized from the W3Schools "W3.CSS Versions" page (Astra wiki-curation, P-Reinforce v3.1 format).