Files
ui/docs/app/app.config.ts
Benjamin Canac 443a0be017 feat(module): generate tailwindcss theme colors (#2967)
Co-authored-by: HugoRCD <hugo.richard@epitech.eu>
Co-authored-by: Sébastien Chopin <seb@nuxt.com>
2025-02-06 17:29:03 +01:00

18 lines
269 B
TypeScript

export default defineAppConfig({
toaster: {
position: 'bottom-right' as const,
expand: true,
duration: 5000
},
theme: {
radius: 0.25,
blackAsPrimary: false
},
ui: {
colors: {
primary: 'green',
neutral: 'slate'
}
}
})