通用中后台框架第一版

This commit is contained in:
BBIT-Kai
2026-04-28 16:27:16 +08:00
commit b8d25869c6
115 changed files with 15223 additions and 0 deletions
+24
View File
@@ -0,0 +1,24 @@
import type { Config } from 'tailwindcss'
export default {
content: ['./index.html', './src/**/*.{vue,ts,tsx}'],
theme: {
extend: {
colors: {
brand: {
50: '#eef5ff',
100: '#dce9ff',
500: '#356dff',
600: '#2a5af0'
}
},
borderRadius: {
panel: '14px'
},
boxShadow: {
panel: '0 6px 24px rgba(15, 23, 42, 0.06)'
}
}
},
plugins: []
} satisfies Config