Files
Ticket/web/tailwind.config.ts
2026-04-30 10:47:26 +08:00

25 lines
470 B
TypeScript

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