mirror of
https://github.com/Paris-est-Ludique/ForceOrange.git
synced 2025-06-08 01:04:20 +02:00
33 lines
517 B
TypeScript
33 lines
517 B
TypeScript
export default defineAppConfig({
|
|
ui: {
|
|
primary: 'orange',
|
|
button: {
|
|
default: {
|
|
color: 'primary',
|
|
},
|
|
},
|
|
input: {
|
|
base: 'focus:bg-orange-100',
|
|
default: {
|
|
size: 'md',
|
|
color: 'primary',
|
|
},
|
|
},
|
|
formGroup: {
|
|
label: {
|
|
base: 'font-thin'
|
|
},
|
|
default: {
|
|
size: 'md',
|
|
},
|
|
},
|
|
card: {
|
|
rounded: 'rounded-3xl',
|
|
shadow: 'shadow-lg',
|
|
},
|
|
header: {
|
|
rounded: 'rounded-xl',
|
|
}
|
|
},
|
|
})
|