34 lines
755 B
CSS
34 lines
755 B
CSS
: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%;
|
|
} |