mirror of
https://github.com/ArthurDanjou/ui.git
synced 2026-01-14 20:19:34 +01:00
17 lines
242 B
TypeScript
17 lines
242 B
TypeScript
export default defineAppConfig({
|
|
toaster: {
|
|
position: 'bottom-right' as const,
|
|
expand: true,
|
|
duration: 5000
|
|
},
|
|
theme: {
|
|
radius: 0.25
|
|
},
|
|
ui: {
|
|
colors: {
|
|
primary: 'green',
|
|
neutral: 'slate'
|
|
}
|
|
}
|
|
})
|