-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.ts
47 lines (39 loc) · 1 KB
/
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
import { defineConfig } from "./common/config"
export default defineConfig({
tailwindColors: {
'custom': {
'50': '#e8ffe4',
'100': '#cbffc5',
'200': '#9aff92',
'300': '#5bff53',
'400': '#24fb20',
'500': '#00fa00',
'600': '#00b505',
'700': '#028907',
'800': '#086c0c',
'900': '#0c5b11',
'950': '#003305',
},
primary: {
'50': '#e8ffe4',
'100': '#cbffc5',
'200': '#9aff92',
'300': '#5bff53',
'400': '#24fb20',
'500': '#00fa00',
'600': '#00b505',
'700': '#028907',
'800': '#086c0c',
'900': '#0c5b11',
'950': '#003305',
}
},
brandName: "LifCare",
tagline: "你的人生健康助手",
apiKey: '',
apiURL: '',
gtmID: '',
favicon: '/clover-logo.svg',
metaDescription: ``,
metaKeywords: ``,
})