-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathapp.config.ts
33 lines (33 loc) · 990 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
export default defineAppConfig({
ui: {
primary: ['emerald', 'blue', 'purple', 'rose', 'cyan', 'red', 'orange', 'lime'][Math.floor(Math.random() * 8)],
gray: 'zinc',
button: {
rounded:
'rounded-md transition-transform active:scale-x-[0.98] active:scale-y-[0.99]',
},
formGroup: {
help: 'text-xs mt-1 text-gray-500 dark:text-gray-400',
error: 'text-xs mt-1 text-red-500 dark:text-red-400',
label: {
base: 'text-sm block font-medium text-gray-500 dark:text-gray-200',
},
},
container: {
constrained: 'max-w-3xl',
},
modal: {
overlay: {
background: 'bg-[rgba(0,8,47,.275)] saturate-50',
},
padding: 'p-0',
rounded: 'rounded-t-2xl sm:rounded-xl',
transition: {
enterFrom: 'opacity-0 translate-y-full sm:translate-y-0 sm:scale-x-95',
leaveFrom: 'opacity-100 translate-y-0 sm:scale-x-100',
},
},
},
name: 'Pushpak Chhajed',
resumeURL: 'https://drive.google.com/file/d/1vJbFZ-NyPPtkshIVDlHZYNusnBt_vZM3/view',
});