manual save(2025-12-29 00:16)

This commit is contained in:
SiteAgent Bot
2025-12-29 00:16:45 +08:00
parent b776315e27
commit e604e821e4
23 changed files with 3933 additions and 137 deletions

View File

@@ -5,7 +5,30 @@ export default {
"./src/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {},
extend: {
colors: {
// 企业主题色
primary: {
DEFAULT: '#1e3a8a', // 深蓝色 - 主色调
light: '#2563eb', // 浅蓝色 - hover 状态
dark: '#1e293b', // 深色 - 文字
},
accent: {
DEFAULT: '#d4af37', // 金色 - 辅助色
light: '#e5c158', // 浅金色 - hover
dark: '#b8960c', // 深金色
},
background: {
DEFAULT: '#f8fafc', // 浅灰色 - 背景色
light: '#ffffff', // 白色
dark: '#f1f5f9', // 深浅灰
},
},
fontFamily: {
sans: ['Inter', 'system-ui', 'sans-serif'],
heading: ['Inter', 'system-ui', 'sans-serif'],
},
},
},
plugins: [
require('@tailwindcss/typography'),