From 05c4b30cab52a628fe03d27378659a8c6c80cf8d Mon Sep 17 00:00:00 2001 From: umsangdon Date: Fri, 28 Aug 2026 13:23:55 +0900 Subject: [PATCH] =?UTF-8?q?fix(B06):=20=EB=AC=BC=EB=84=98=EC=9D=B4=20?= =?UTF-8?q?=ED=8C=8C=EC=9E=84=20=EC=84=A0=EC=9D=B4=20=EC=95=88=20=EA=B7=B8?= =?UTF-8?q?=EB=A0=A4=EC=A7=80=EB=8D=98=20=ED=85=8C=EB=A7=88=20=EB=B3=80?= =?UTF-8?q?=EC=88=98=EB=A5=BC=20=EA=B3=A0=EC=B9=9C=EB=8B=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --color-text-primary 는 이 프로젝트 테마에 없는 이름이라 stroke 가 none 으로 풀려 물넘이 바닥 실선·포장 빗금이 화면에서 통째로 사라졌다(점선만 보였다 — 그쪽은 --color-text-secondary 를 써서 살아 있었다). 확대 캡처를 찍다가 발견했다. 있는 이름(--color-text-body)으로 바꾼다. 검증: 같은 카드를 다시 찍어 바닥 실선·빗금 포장이 나오는 것을 확인. Co-Authored-By: Claude Opus 5 (1M context) --- B06_Section/B06_Section_UI_Style_Cross_Areas.css | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/B06_Section/B06_Section_UI_Style_Cross_Areas.css b/B06_Section/B06_Section_UI_Style_Cross_Areas.css index 7e4c0b75..113289b3 100644 --- a/B06_Section/B06_Section_UI_Style_Cross_Areas.css +++ b/B06_Section/B06_Section_UI_Style_Cross_Areas.css @@ -182,18 +182,18 @@ .b06-chart__ford-deck { fill: none; - stroke: var(--color-text-primary); + stroke: var(--color-text-body); stroke-width: 1.8; stroke-linejoin: round; } .b06-chart__ford-pavement { - stroke: var(--color-text-primary); + stroke: var(--color-text-body); stroke-width: 1; } .b06-chart__ford-pavement-hatch { - stroke: color-mix(in srgb, var(--color-text-primary) 70%, transparent); + stroke: color-mix(in srgb, var(--color-text-body) 70%, transparent); stroke-width: 1.2; fill: none; }