From 7e83884d33f287a79a83c939d77cd2bbc524a81f Mon Sep 17 00:00:00 2001 From: sihoo Date: Tue, 8 Sep 2026 18:17:03 +0900 Subject: [PATCH] =?UTF-8?q?=EC=8A=A4=ED=81=AC=EB=A1=A4=20=EC=8B=9C=20?= =?UTF-8?q?=ED=8C=8C=EB=9E=97=EA=B2=8C=20=EB=B3=B4=EC=9D=B4=EB=8A=94=20?= =?UTF-8?q?=EC=A7=84=EC=A7=9C=20=EC=9B=90=EC=9D=B8=20=EB=B0=9C=EA=B2=AC=20?= =?UTF-8?q?-=20PWA=20manifest=20=EA=B8=B0=EB=B3=B8=20=ED=8C=8C=EB=9E=80?= =?UTF-8?q?=EC=83=89=20=EC=A0=9C=EA=B1=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit manifest.json의 theme_color/background_color가 Flutter 프로젝트 템플릿의 기본값(#0175C2, Flutter 브랜드 파란색)으로 그대로 남아있었음. Safari가 스크롤 시 툴바 주변을 이 색으로 물들여서 파란 줄이 보인 것. - manifest.json: theme_color를 앱의 ink색(#1C1C1C)으로, background_color를 앱 배경색(#EEF0F2)으로 교체 - index.html에도 를 명시적으로 추가해 이중으로 보장 Co-Authored-By: Claude Sonnet 5 --- web/index.html | 4 ++++ web/manifest.json | 4 ++-- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/web/index.html b/web/index.html index fd26aea..cd7de19 100644 --- a/web/index.html +++ b/web/index.html @@ -19,6 +19,10 @@ + + + diff --git a/web/manifest.json b/web/manifest.json index f3f6104..6210153 100644 --- a/web/manifest.json +++ b/web/manifest.json @@ -3,8 +3,8 @@ "short_name": "school_attendance", "start_url": ".", "display": "standalone", - "background_color": "#0175C2", - "theme_color": "#0175C2", + "background_color": "#EEF0F2", + "theme_color": "#1C1C1C", "description": "A new Flutter project.", "orientation": "portrait-primary", "prefer_related_applications": false,