feat(module)!: move primary and gray inside colors object

This commit is contained in:
Benjamin Canac
2024-07-01 14:57:46 +02:00
parent 30bc3a1d76
commit ccbaf6ea15
5 changed files with 21 additions and 10 deletions

View File

@@ -1,6 +1,8 @@
export default defineAppConfig({
ui: {
primary: 'sky',
gray: 'cool'
colors: {
primary: 'sky',
gray: 'cool'
}
}
})