-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.config.ts
127 lines (127 loc) · 3.21 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
export default defineAppConfig({
tana: {
socials: [
{
name: "Facebook",
url: "https://www.facebook.com/tanamoee",
icon: "i-simple-icons-facebook",
},
{
name: "X",
url: "https://x.com/tanamoeeee",
icon: "i-simple-icons-x",
},
{
name: "Discord",
url: "https://via.tana.moe/discord",
icon: "i-simple-icons-discord",
},
{
name: "GitHub",
url: "https://github.com/tanamoe",
icon: "i-simple-icons-github",
},
],
},
ui: {
primary: "tanablue",
gray: "zinc",
container: {
base: "mx-auto",
padding: "px-6 sm:px-6 lg:px-6",
constrained: "container max-w-[auto]",
},
card: {
header: {
padding: "p-4 sm:p-4",
},
body: {
padding: "p-4 sm:p-4",
},
},
button: {
variant: {
soft: "text-{color}-500 dark:text-{color}-400 bg-{color}-100 hover:bg-{color}-100 disabled:bg-{color}-50 dark:bg-{color}-800 dark:hover:bg-{color}-900 dark:disabled:bg-{color}-950 focus-visible:ring-2 focus-visible:ring-inset focus-visible:ring-{color}-500 dark:focus-visible:ring-{color}-400",
},
color: {
gray: {
ghost: "hover:bg-gray-200",
},
},
default: {
loadingIcon: "i-fluent-arrow-clockwise-20-filled",
},
},
formGroup: {
description: "text-gray-500 dark:text-gray-400 text-sm",
hint: "text-gray-500 dark:text-gray-400 text-sm",
help: "mt-2 text-gray-500 dark:text-gray-400 text-sm",
error: "mt-2 text-red-500 dark:text-red-400 text-sm",
},
table: {
default: {
sortAscIcon: "i-fluent-arrow-sort-down-20-filled",
sortDescIcon: "i-fluent-arrow-sort-up-20-filled",
sortButton: {
icon: "i-fluent-arrow-sort-20-filled",
},
loadingState: {
icon: "i-fluent-arrow-clockwise-20-filled",
},
emptyState: {
icon: "i-fluent-database-20-filled",
},
},
},
input: {
default: {
loadingIcon: "i-fluent-arrow-clockwise-20-filled",
},
},
select: {
default: {
loadingIcon: "i-fluent-arrow-clockwise-20-filled",
trailingIcon: "i-fluent-chevron-down-20-filled",
},
},
selectMenu: {
default: {
selectedIcon: "i-fluent-checkmark-20-filled",
},
},
notification: {
default: {
closeButton: {
icon: "i-fluent-dismiss-20-filled",
},
},
},
commandPalette: {
default: {
icon: "i-fluent-search-20-filled",
loadingIcon: "i-fluent-arrow-clockwise-20-filled",
selectedIcon: "i-fluent-checkmark-20-filled",
emptyState: {
icon: "i-fluent-search-20-filled",
},
},
},
pagination: {
default: {
prevButton: {
icon: "i-fluent-chevron-left-20-filled",
},
nextButton: {
icon: "i-fluent-chevron-right-20-filled",
},
},
},
breadcrumb: {
li: "min-w-0",
base: "block whitespace-nowrap truncate",
},
},
// TODO: remove on upstream fix
// https://github.com/nuxt/ui/issues/1043
nuxtIcon: {},
});