-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathapp.config.ts
More file actions
40 lines (40 loc) · 862 Bytes
/
app.config.ts
File metadata and controls
40 lines (40 loc) · 862 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
export default defineAppConfig({
ui: {
primary: 'gray',
gray: 'neutral',
button: {
default: {
size: 'md',
color: 'gray',
variant: 'ghost'
}
},
input: {
default: {
size: 'md',
color: 'gray',
variant: 'outline',
padding: 'px-4 py-2',
ring: 'ring-1 ring-gray-200 focus:ring-2 focus:ring-gray-400',
rounded: 'rounded-lg',
placeholder: 'placeholder-gray-400'
}
},
select: {
default: {
size: 'md',
color: 'gray',
variant: 'outline',
padding: 'px-4 py-2',
ring: 'ring-1 ring-gray-200 focus:ring-2 focus:ring-gray-400',
rounded: 'rounded-lg',
placeholder: 'placeholder-gray-400'
}
},
notification: {
default: {
color: 'gray'
}
}
}
})