2025-11-24 16:44:48 +07:00
|
|
|
// Tailwind CSS v4 uses CSS-first configuration
|
|
|
|
|
// This file is kept for shadcn-vue compatibility but configuration is done in CSS
|
2025-11-24 19:12:46 +07:00
|
|
|
export default {
|
|
|
|
|
// No prefix for Tailwind v4 CSS-first approach
|
2025-11-26 00:14:32 +07:00
|
|
|
theme: {
|
|
|
|
|
extend: {
|
|
|
|
|
fontFamily: {
|
|
|
|
|
sans: [
|
|
|
|
|
'Montserrat',
|
|
|
|
|
'-apple-system',
|
|
|
|
|
'BlinkMacSystemFont',
|
|
|
|
|
'Segoe UI',
|
|
|
|
|
'Roboto',
|
|
|
|
|
'sans-serif',
|
|
|
|
|
],
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
},
|
2025-11-24 19:12:46 +07:00
|
|
|
}
|