From 2911dfe3a822659067fea633224592a5c498f678 Mon Sep 17 00:00:00 2001 From: caadiq Date: Tue, 21 Apr 2026 18:32:21 +0900 Subject: [PATCH] =?UTF-8?q?=ED=95=B4=EB=B0=A9=20=ED=80=98=EC=8A=A4?= =?UTF-8?q?=ED=8A=B8=20=EC=A7=84=ED=96=89=20=EB=B0=94=20=EC=83=89=EC=83=81?= =?UTF-8?q?=EC=9D=84=20=ED=85=8C=EB=A7=88=EB=B3=84=20=ED=9D=91=EB=B0=B1?= =?UTF-8?q?=EC=9C=BC=EB=A1=9C=20=EB=8B=A8=EC=88=9C=ED=99=94?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 기존 보라/빨강 2색에서 다크 테마는 흰색, 라이트 테마는 검정으로 통일. 1차/2차 구분은 동일 색상의 투명도(0.55 vs 1.0, 바는 0.25 vs 0.5)로만 주어 시각적 통일감을 확보. Co-Authored-By: Claude Opus 4.7 (1M context) --- frontend/src/index.css | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/frontend/src/index.css b/frontend/src/index.css index 02c19a9..711f605 100644 --- a/frontend/src/index.css +++ b/frontend/src/index.css @@ -141,10 +141,10 @@ --btn-danger-bg-hover: #ef4444; --btn-danger-shadow: 0 4px 14px rgba(239, 68, 68, 0.2); - --liberation-primary: #a78bfa; - --liberation-primary-bar: rgba(167, 139, 250, 0.5); - --liberation-secondary: #fda4af; - --liberation-secondary-bar: rgba(253, 164, 175, 0.5); + --liberation-primary: rgba(255, 255, 255, 0.55); + --liberation-primary-bar: rgba(255, 255, 255, 0.25); + --liberation-secondary: rgb(255, 255, 255); + --liberation-secondary-bar: rgba(255, 255, 255, 0.5); --symbol-arcane-text: #c4b5fd; --symbol-arcane-bg: rgba(139, 92, 246, 0.15); @@ -292,10 +292,10 @@ --btn-danger-bg-hover: #b91c1c; --btn-danger-shadow: 0 4px 14px rgba(220, 38, 38, 0.25); - --liberation-primary: #7c3aed; - --liberation-primary-bar: rgba(124, 58, 237, 0.5); - --liberation-secondary: #e11d48; - --liberation-secondary-bar: rgba(225, 29, 72, 0.5); + --liberation-primary: rgba(0, 0, 0, 0.55); + --liberation-primary-bar: rgba(0, 0, 0, 0.25); + --liberation-secondary: rgb(0, 0, 0); + --liberation-secondary-bar: rgba(0, 0, 0, 0.5); --symbol-arcane-text: #6d28d9; --symbol-arcane-bg: rgba(139, 92, 246, 0.12);