// 그란데 독서타임 — 디자인 토큰
// 흰 배경 / 모노톤 / 블루 액센트(#4B62E6) / Pretendard 단일 서체
const tokens = {
  color: {
    bg: '#FFFFFF',
    cream: '#F4F0E6',
    silver: '#D4D6DB',
    ink: '#0A0A0A',
    inkSoft: '#2A2A2A',
    muted: '#7A7A7A',
    mutedLight: '#B8B8B8',
    ruleSoft: '#E8E8E6',
    blue: '#4B62E6',
    blueDeep: '#3A4FC7',
    blueSoft: '#EEF1FE',
    blueMid: '#5A6DB6',
  },
  font: {
    sans: '"Pretendard Variable", "Pretendard", -apple-system, sans-serif',
    mono: '"Pretendard Variable", "Pretendard", -apple-system, sans-serif',
  },
};
window.tokens = tokens;
