/**
 * variables.css
 * Raw color tokens only.
 *
 * IMPORTANT
 * - Components must NOT use raw tokens directly.
 * - Use semantic tokens from theme.css only.
 *
 * Color palette: Figma variable collection Style B only (10주년 페이지).
 * Contrast override:
 * - [data-contrast="high"] overrides raw tokens to contrast values.
 */

:root {
  /* 부드러운 ease-in-out (Material Design 스타일) */
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-smooth-in-out: cubic-bezier(0.65, 0, 0.35, 1);

  /* Style B raw tokens */
  --color-accent-yellow: #ffff00;
  --color-accent-lime: #FFEE00;
  --color-accent-cyan: #cce6ff;
  --color-brand-navy: #005eb8;
  --color-brand-teal: #007058;

  --color-neutral-0: #ffffff;
  --color-neutral-100: #f4f4f4;
  --color-neutral-300: #cccccc;
  --color-neutral-500: #999999;
  --color-neutral-700: #555555;
  --color-neutral-800: #000000;
}

