/* ════════════════════════════════
   飞溯 - 设计令牌 (Design Tokens)
   深色主题默认值
════════════════════════════════ */

:root {
  /* 基础色 */
  --night: #0b0a08;
  --ink0: #161410;
  --ink1: #1f1c16;
  --ink2: #2a261e;
  --ink3: #353028;

  /* 金色系 */
  --gold: #c8a96e;
  --gold2: #e8d098;

  /* 奶油白 */
  --cream: #eee8d8;
  --mist: rgba(238, 232, 216, 0.8);
  --mist2: rgba(238, 232, 216, 0.5);
  --mist3: rgba(238, 232, 216, 0.25);
  --mist4: rgba(238, 232, 216, 0.05);

  /* 功能色 */
  --teal: #3ec9a0;
  --coral: #e07258;
  --blue: #6ea8d8;
  --purple: #a890e0;

  /* 字体 */
  --serif: 'Noto Serif SC', serif;
  --sans: 'DM Sans', sans-serif;
  --mono: 'DM Mono', monospace;
}
