Files
InsightReply/web/tailwind.config.js
zs 8cf6cb944b
Some checks failed
Extension Build & Release / build (push) Failing after 1m5s
Backend Deploy (Go + Docker) / deploy (push) Failing after 1m40s
Web Console Deploy (Vue 3 + Vite) / deploy (push) Has been cancelled
feat: 部署初版测试
2026-03-02 21:25:21 +08:00

25 lines
585 B
JavaScript

/** @type {import('tailwindcss').Config} */
export default {
content: [
"./index.html",
"./src/**/*.{vue,js,ts,jsx,tsx}",
],
theme: {
extend: {
colors: {
brand: {
primary: '#3b82f6', // Bright professional blue
secondary: '#10b981', // Success green
dark: '#0f172a', // Deep slate
panel: '#1e293b', // Slightly lighter slate
border: '#334155'
}
},
fontFamily: {
sans: ['Inter', 'system-ui', 'Avenir', 'Helvetica', 'Arial', 'sans-serif'],
}
},
},
plugins: [],
}