InfiniteCloud/tailwind.config.js
2025-09-15 14:52:27 +08:00

19 lines
460 B
JavaScript

module.exports = {
content: ["./pages/**/*.{js,ts,jsx,tsx}", "./components/**/*.{js,ts,jsx,tsx}"],
theme: {
extend: {
colors: {
primary: '#333333', // 深灰
background: '#FFFFFF', // 白色
accent: '#006AFF', // 强调色
},
spacing: {
section: '4rem', // 段落间距
},
fontFamily: {
sans: ['Inter', 'sans-serif'],
}
}
},
plugins: []
};