feat: frontend skeleton done

This commit is contained in:
simonkoson
2026-05-15 09:46:42 +08:00
parent 2bee0ce8c8
commit d29b1bb394
36 changed files with 5008 additions and 0 deletions
+34
View File
@@ -0,0 +1,34 @@
:root {
/* 奶油底,主背景 */
--color-bg-cream: #fbf9f1;
/* 深绿,主色 */
--color-primary-green: #6b8e6b;
/* 浅绿,辅色 */
--color-accent-green: #c8d9b0;
/* 文字主色 */
--color-text-primary: #1a1a1a;
/* 文字次要色 */
--color-text-secondary: #6b6b6b;
/* 卡片大圆角 */
--radius-card: 16px;
/* 按钮圆角 */
--radius-button: 12px;
}
* {
box-sizing: border-box;
}
body {
margin: 0;
background-color: var(--color-bg-cream);
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
color: var(--color-text-primary);
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
#root {
min-height: 100vh;
width: 100%;
}