From 4a76c09f3a7d4a9ab0006e3350cc832871ee2342 Mon Sep 17 00:00:00 2001 From: claude-bot Date: Tue, 23 Jun 2026 22:54:51 +0900 Subject: [PATCH] =?UTF-8?q?installer:=20brighten=20agreement=20text=20(whi?= =?UTF-8?q?te=E2=86=92pure=20white,=20gray=E2=86=92white)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 약관 본문(.agreementBody) 글자색을 더 진하게: 제목/굵은글씨/목록은 순백(#fff), 회색이던 문단(.page p 상속)은 이전 흰색 톤(#e6edf3)으로 올림. 두 설치기가 공유하는 installer/styles.css 변경. v0.3.11. Co-Authored-By: Claude Opus 4 --- installer/styles.css | 5 ++++- package.json | 2 +- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/installer/styles.css b/installer/styles.css index 9a0f92a..9306d67 100644 --- a/installer/styles.css +++ b/installer/styles.css @@ -181,12 +181,15 @@ main { overflow-y: auto; font-size: 13px; line-height: 1.65; + /* 약관 본문은 더 진한 순백으로(제목/굵은글씨/목록). */ + color: #fff; } .agreementBody h1, .agreementBody h2, .agreementBody h3 { margin: 12px 0 6px; } .agreementBody h1 { font-size: 17px; } .agreementBody h2 { font-size: 15px; } .agreementBody h3 { font-size: 14px; } -.agreementBody p { margin: 6px 0; } +/* 본문 문단은 기존 회색(--text-muted) 대신 이전 흰색 톤(#e6edf3)으로 올린다. */ +.agreementBody p { margin: 6px 0; color: #e6edf3; } .agreementBody ul, .agreementBody ol { margin: 6px 0; padding-left: 22px; } .agreementBody li { margin: 2px 0; } .agreementBody code { background: rgba(255,255,255,0.08); padding: 1px 4px; border-radius: 3px; font-family: 'Consolas', monospace; } diff --git a/package.json b/package.json index 902582c..1f9ceb1 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "minecraft-music-quiz-installer", - "version": "0.3.10", + "version": "0.3.11", "description": "마인크래프트 음악퀴즈 간편설치기 + 관리 사이트", "main": "dist/installer/main.js", "scripts": {