通用中后台框架第一版
This commit is contained in:
@@ -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
|
||||
Reference in New Issue
Block a user