- 添加 ESLint 和 Prettier 配置以统一代码风格 - 配置项目级 TypeScript 设置 - 更新前后端依赖版本 - 修复代码格式问题(引号、分号、尾随逗号等) - 优化文件结构和导入路径
28 lines
503 B
CSS
28 lines
503 B
CSS
@import 'tailwindcss';
|
|
@import '@heroui/styles';
|
|
|
|
@theme {
|
|
--color-brand: #c14b4b;
|
|
--color-brand-foreground: #ffffff;
|
|
|
|
--radius-2xl: 1.25rem;
|
|
--radius-3xl: 1.5rem;
|
|
}
|
|
|
|
@layer base {
|
|
:root {
|
|
--background: 0 0% 100%;
|
|
--foreground: 240 10% 3.9%;
|
|
}
|
|
|
|
.dark {
|
|
--background: 240 10% 3.9%;
|
|
--foreground: 0 0% 98%;
|
|
}
|
|
}
|
|
|
|
body {
|
|
@apply bg-background text-foreground selection:bg-brand/20 selection:text-brand antialiased;
|
|
font-feature-settings: 'cv02', 'cv03', 'cv04', 'cv11';
|
|
}
|