feat: 部署初版测试
This commit is contained in:
24
web/tailwind.config.js
Normal file
24
web/tailwind.config.js
Normal file
@@ -0,0 +1,24 @@
|
||||
/** @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: [],
|
||||
}
|
||||
Reference in New Issue
Block a user