-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.config.ts
37 lines (36 loc) · 1.11 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
export default defineAppConfig({
ui: {
primary: "sky",
gray: "slate",
landing: {
card: {
wrapper: "landing-card-wrapper",
container: "landing-card-container",
body: {
base: "landing-card-body",
},
},
section: {
wrapper: "py-auto pt-12 pb-4 sm:py-32",
container: "gap-12 sm:gap-y-12 flex flex-col",
title:
"text-3xl font-bold tracking-tight dark:text-gradient sm:text-4xl lg:text-5xl text-gradient",
},
hero: {
container: "gap-16 sm:gap-y-24 flex flex-col max-w-full",
title:
"text-8xl font-bold tracking-tight sm:text-7xl text-gradient-main",
description:
"mt-2 text-lg tracking-tight text-gray-600 dark:text-gray-300",
},
},
header: {
wrapper:
"header-background-gradient backdrop-blur border-b border-gray-200 dark:border-gray-800 -mb-px sticky top-0 z-50",
logo: "header-color-text flex-shrink-0 text-xl dark:text-white flex items-end gap-1.5",
button: {
base: "header-color-text lg:hidden",
},
},
},
});