-
Notifications
You must be signed in to change notification settings - Fork 1
/
app.config.ts
33 lines (33 loc) · 1.03 KB
/
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: 'sky',
table: {
td: { color: 'text-slate-800 dark:text-slate-200', size: 'text-base', padding: 'px-3 py-2.5' },
th: {
color: 'text-slate-800 dark:text-slate-200 [&>*]:text-slate-800 [&>*]:dark:text-slate-200',
font: '[&>*]:font-semibold',
size: 'text-base [&>*]:text-base',
padding: 'px-3 py-3',
},
tr: { base: 'transition-colors hocus:bg-slate-50 dark:hocus:bg-slate-800/50' },
default: {
sortAscIcon: 'i-icon-park-outline-sort-amount-up',
sortDescIcon: 'i-icon-park-outline-sort-amount-down',
sortButton: {
icon: 'i-icon-park-outline-sort-three',
},
loadingState: {
icon: 'i-icon-park-outline-loading-one',
},
emptyState: {
icon: 'i-icon-park-outline-inbox',
},
},
},
modal: {
base: 'relative text-left rtl:text-right w-full flex flex-col',
width: 'md:max-w-2xl',
height: 'h-[calc(100vh-4em)]',
},
},
})