-
Notifications
You must be signed in to change notification settings - Fork 1
/
app.config.ts
41 lines (41 loc) · 945 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
export default defineAppConfig({
ui: {
primary: "rhino",
gray: "zinc",
variables: {
light: {
background: "var(--color-gray-50)",
foreground: "var(--color-gray-900)",
},
dark: {
background: "var(--color-gray-900)",
foreground: "var(--color-gray-200)",
},
},
icons: {
dark: "i-ri-moon-fill",
light: "i-ri-sun-fill",
system: "i-ri-computer-line",
search: "i-ri-search-line",
external: "i-ri-external-link-line",
chevron: "i-ri-arrow-down-s-line",
hash: "i-ri-links-line",
},
content: {
prose: {
code: {
icon: {
php: "i-ri-braces-line",
yml: "i-ri-braces-line",
},
button: {
icon: {
copy: "i-ri-file-copy-line",
copied: "i-ri-checkbox-circle-line",
},
},
},
},
},
},
});