/* ============================================
 * [WHO]: Default token stack entry — wires scale, theme bridge, scrollbar helper, and built-in themes.
 * [FROM]: `./scale.css`, `theme-base.css`, `themes/*.css`, `scrollbar-utility.css`.
 * [TO]: Apps that want one import for layout + color tokens; CLI `init` / docs full-import path.
 * [HERE]: src/tokens/index.css — bundle root; see `src/tokens/AGENTS.md` for cherry-pick imports.
 *
 * [PROTOCOL]:
 * 1. When adding a new theme file, import it here and document in P2 `src/tokens/AGENTS.md`.
 * 2. Custom layout: import `scale/config.css` + `scale/computed.css`, override `--config-*`, then theme layers.
 * 3. Custom color only: `theme-base.css` + your `[data-theme]` file setting `--token-color-*`.
 * ============================================ */

/* 布局风格 Token (data-style: neutral | compact | soft | sharp | dense) */
@import "./scale.css";

/* Tailwind @theme 映射 + 动画 + 公共样式 */
@import "./theme-base.css";

/* 内置主题 (data-theme) */
@import "./themes/light-mint.css";
@import "./themes/dark-mint.css";
@import "./themes/light-forest.css";
@import "./themes/dark-forest.css";
@import "./themes/light-parchment.css";
@import "./themes/dark-parchment.css";
@import "./themes/qoderwork.css";

/* 滚动条工具样式 */
@import "./scrollbar-utility.css";
