mirror of
https://github.com/ArthurDanjou/ui.git
synced 2026-01-14 12:14:41 +01:00
Co-authored-by: HugoRCD <hugo.richard@epitech.eu> Co-authored-by: Sébastien Chopin <seb@nuxt.com>
18 lines
269 B
TypeScript
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'
|
|
}
|
|
}
|
|
})
|