初始化项目

This commit is contained in:
BBIT-Kai
2026-04-30 10:47:26 +08:00
commit c932419c73
147 changed files with 45298 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