mirror of
https://github.com/ArthurDanjou/arthome.git
synced 2026-01-14 12:14:33 +01:00
24 lines
691 B
TypeScript
24 lines
691 B
TypeScript
export default defineAppConfig({
|
|
ui: {
|
|
gray: 'zinc',
|
|
primary: 'gray',
|
|
notifications: {
|
|
position: 'bottom-0 right-0',
|
|
},
|
|
input: {
|
|
color: {
|
|
white: {
|
|
outline: 'shadow-sm bg-white dark:bg-gray-900 text-gray-900 dark:text-white ring-1 ring-inset ring-gray-300 dark:ring-gray-700 focus:ring-2 focus:ring-zinc-500 dark:focus:ring-zinc-500',
|
|
},
|
|
},
|
|
},
|
|
select: {
|
|
color: {
|
|
white: {
|
|
outline: 'shadow-sm bg-white dark:bg-gray-900 text-gray-900 dark:text-white ring-1 ring-inset ring-gray-300 dark:ring-gray-700 focus:ring-2 focus:ring-zinc-500 dark:focus:ring-zinc-500',
|
|
},
|
|
},
|
|
},
|
|
},
|
|
})
|