-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.config.ts
47 lines (47 loc) · 951 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
export default defineAppConfig({
ui: {
primary: "emerald",
gray: "zinc",
variables: {
light: {
background: "229 250 239",
foreground: "110 231 183",
},
dark: {
background: "0 13 6",
foreground: "4 120 87",
},
},
button: {
rounded: "rounded-full",
default: {
size: "md",
color: "black",
},
},
input: {
rounded: "rounded-full",
},
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",
},
},
pricing: {
card: {
highlight: "ring-gray-900 dark:ring-white",
features: {
item: {
icon: {
base: "text-gray-900 dark:text-white",
},
},
},
},
},
},
});