style(frontend): PwC 로고 제거, 기본 라이트 모드, 삼성 팔레트 포인트 Samsung Blue

- LogoMark 는 null 렌더(호출부 6곳 그대로), logo.png·logo-dark.png 삭제, 파비콘 투명
- themeStore·index.html 기본 light. 예전 dark 저장값은 첫 실행 때 한 번만 초기화
- samsung 팔레트 primary/ring/link = #1428A0(브랜드 파랑). 바탕·글씨·면은 실측값 유지
- Message 테스트: 기본 라이트 기준으로 코드블럭 흰 배경 기대

Co-Authored-By: Claude Fable 5.1 <noreply@anthropic.com>
This commit is contained in:
lee-hyeon-cheol
2026-09-21 10:40:32 +09:00
co-authored by Claude Fable 5.1
parent efb9fb46de
commit 72a06d6c07
9 changed files with 22 additions and 28 deletions
+7 -3
View File
@@ -21,11 +21,15 @@
}
document.documentElement.setAttribute("data-theme", pal)
var raw = localStorage.getItem("theme-store")
var mode = "dark" // 저장값 없으면 다크 (themeStore 기본과 동일)
if (raw) {
var mode = "light" // 저장값 없으면 라이트 (themeStore 기본과 동일)
// 기본 모드를 라이트로 바꾸면서(2026-09) 예전 저장값 dark 는 한 번만 light 로. 이후 직접 고른 건 유지.
if (raw && localStorage.getItem("light-default-v1")) {
try {
mode = (JSON.parse(raw).state || {}).theme || "dark"
mode = (JSON.parse(raw).state || {}).theme || "light"
} catch (e) {}
} else {
localStorage.removeItem("theme-store")
localStorage.setItem("light-default-v1", "1")
}
var dark =
mode === "dark" ||