/* 백호(baekho) 테마 토큰 — 라이트/다크 한 곳(standards/02 §6-2 · 랩 theme.css 오마쥬 · 접두 --hh-). 색은 이 파일에만. 다크 = <html class="dark">. */
:root {
  --hh-bg:        #f3f5f4;
  --hh-surface:   #ffffff;
  --hh-card:      #f7f8f8;
  --hh-text:      #15201d;
  --hh-muted:     #5f6f6a;
  --hh-faint:     #9aa8a3;
  --hh-border:    #dfe5e2;
  --hh-accent:    #0f9a82;
  --hh-accent-2:  #0b7f6b;
  --hh-on-accent: #ffffff;
  --hh-safe:      #16a34a;
  --hh-danger:    #dc2626;
  --hh-warn:      #d97706;
  --hh-rec:       #2f9e5f;
  --hh-event:     #f59e0b;
  --hh-video-bg:  #000000;
  --hh-overlay:   rgba(0,0,0,.55);
  --hh-shadow:    rgba(0,0,0,.10);
  --hh-tint-danger:#fee2e2;
  --hh-tint-accent:#e0f4f0;
  color-scheme: light;
}
html.dark {
  --hh-bg:        #0e1211;
  --hh-surface:   #151b19;
  --hh-card:      #1b2220;
  --hh-text:      #e4eae6;
  --hh-muted:     #96a29b;
  --hh-faint:     #66736e;
  --hh-border:    #2a3431;
  --hh-accent:    #3fbca4;
  --hh-accent-2:  #2fa08a;
  --hh-on-accent: #0b1512;
  --hh-safe:      #4ade80;
  --hh-danger:    #f87171;
  --hh-warn:      #fbbf24;
  --hh-rec:       #2f7d46;
  --hh-event:     #fbbf24;
  --hh-overlay:   rgba(0,0,0,.65);
  --hh-shadow:    rgba(0,0,0,.45);
  --hh-tint-danger:#3a1d1d;
  --hh-tint-accent:#173430;
  color-scheme: dark;
}
