official-website-portals/tailwind.config.js
2025-09-10 21:42:18 +08:00

22 lines
511 B
JavaScript

/** @type {import('tailwindcss').Config} */
export default {
content: [
"./index.html",
"./src/**/*.{vue,js,ts,jsx,tsx}",
],
theme: {
extend: {
colors: {
primary: '#0F52BA', // 深蓝主色
secondary: '#00A3FF', // 科技蓝辅助色
accent: '#00FFDD', // 亮蓝强调色
dark: '#0A1128', // 深色背景
light: '#F0F4F8', // 浅色背景
},
fontFamily: {
roboto: ['Roboto', 'sans-serif'],
},
},
},
plugins: [],
}