-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.config.ts
50 lines (50 loc) · 895 Bytes
/
app.config.ts
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
41
42
43
44
45
46
47
48
49
50
export default defineAppConfig({
ui: {
primary: 'sky',
gray: 'cool',
button: {
rounded: 'rounded-full',
default: {
size: 'md'
}
},
variables: {
header: {
height: '6rem'
}
},
input: {
default: {
size: 'md'
}
},
// avatar: { size: [''] },
card: {
rounded: 'rounded-xl'
},
footer: {
top: {
wrapper: 'border-t border-gray-200 dark:border-gray-800',
container: 'py-8 lg:py-16'
},
bottom: {
wrapper: 'border-t border-gray-200 dark:border-gray-800'
}
},
page: {
hero: {
wrapper: 'lg:py-24'
}
},
content: {
prose: {
code: {
icon: {
cs: 'vscode-icons:file-type-csharp',
csx: 'vscode-icons:file-type-csharp'
}
}
}
}
}
})