feat: 初始化 Astro 项目与工具链(astro5/vitest/zod3/设计token/env)

This commit is contained in:
lzy
2026-07-23 19:12:51 +08:00
parent b0cbed356a
commit 3ecac5b757
8 changed files with 7110 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
:root {
/* 白标入口:换客户时改这里 */
--color-primary: #007aff;
--color-text: #1a1a1a;
--color-bg: #ffffff;
--font-sans: system-ui, -apple-system, 'PingFang SC', 'Microsoft YaHei', sans-serif;
}
html { font-family: var(--font-sans); color: var(--color-text); background: var(--color-bg); }
body { margin: 0; max-width: 960px; margin-inline: auto; padding: 1.5rem; }
a { color: var(--color-primary); }