This commit is contained in:
Tiemen van Olst
2025-09-08 13:55:29 +02:00
parent 11da1a4806
commit 3c8e0e12eb
13 changed files with 226 additions and 0 deletions

15
app/app.config.ts Normal file
View File

@@ -0,0 +1,15 @@
export default defineAppConfig({
// https://ui.nuxt.com/getting-started/theme#design-system
ui: {
colors: {
primary: 'emerald',
neutral: 'slate',
},
button: {
defaultVariants: {
// Set default button color to neutral
// color: 'neutral'
}
}
}
})