-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.config.ts
49 lines (49 loc) · 1.32 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
export default defineAppConfig({
ui: {
variables: {
light: {
background: '255 255 255',
foreground: 'var(--color-gray-700)'
},
dark: {
background: 'var(--color-gray-900)',
foreground: 'var(--color-gray-200)'
},
header: {
height: '4rem'
}
},
icons: {
dark: "i-heroicons-moon-20-solid",
light: "i-heroicons-sun-20-solid",
search: "i-heroicons-magnifying-glass-20-solid",
external: "i-heroicons-arrow-up-right-20-solid",
chevron: "i-heroicons-chevron-down-20-solid",
hash: "i-heroicons-hashtag-20-solid"
},
presets: {
button: {
primary: {
color: "white",
variant: "solid"
},
secondary: {
color: "gray",
variant: "ghost"
}
}
},
input: {
color: 'white',
variant: 'outline',
ui: {
font: '',
color: {
white: {
outline: 'ring-1 ring-inset ring-gray-300 dark:ring-gray-700 hover:ring-gray-300 dark:hover:ring-gray-700 hover:bg-gray-100/50 dark:hover:bg-gray-800/50 text-gray-400 dark:text-gray-500 hover:text-gray-700 dark:hover:text-gray-200 focus-visible:ring-2 focus-visible:ring-primary-500 dark:focus-visible-ring-primary-400'
}
}
}
}
}
})