From 2d1de5934763ccd69206e42ff52f01c5eb80748f Mon Sep 17 00:00:00 2001 From: Haewon Kam Date: Mon, 13 Apr 2026 13:56:14 +0900 Subject: [PATCH] =?UTF-8?q?fix:=20=ED=8D=BC=ED=94=8C/=EB=8B=A4=ED=81=AC=20?= =?UTF-8?q?=EB=B0=B0=EA=B2=BD=20=EB=82=B4=20heading=20=ED=85=8D=EC=8A=A4?= =?UTF-8?q?=ED=8A=B8=20=ED=9D=B0=EC=83=89=EC=9C=BC=EB=A1=9C=20=EC=88=98?= =?UTF-8?q?=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 전역 CSS h1~h6 { text-primary-900 } 규칙이 부모의 text-white 상속을 덮어쓰는 문제 수정. .text-white 컨테이너 내 모든 heading에 text-white 강제 적용 (통합 권장 사항 등 퍼플 배경 섹션 전체 적용). Co-Authored-By: Claude Sonnet 4.6 --- src/index.css | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/index.css b/src/index.css index c87de42..772f7b1 100644 --- a/src/index.css +++ b/src/index.css @@ -84,6 +84,12 @@ h1, h2, h3, h4, h5, h6 { @apply font-serif text-primary-900; } + + /* Headings inside dark/white-text containers inherit white */ + .text-white h1, .text-white h2, .text-white h3, + .text-white h4, .text-white h5, .text-white h6 { + @apply text-white; + } } .glass-card {