-
Notifications
You must be signed in to change notification settings - Fork 4
/
tailwind.config.js
36 lines (36 loc) · 1.05 KB
/
tailwind.config.js
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
module.exports = {
content: [
"./src/pages/**/*.tsx",
"./src/components/**.tsx",
"./src/layouts/**.tsx",
],
theme: {
extend: {
backgroundImage: {
mainImg: "url(@/assets/images/bg.png)",
mainImg1: "url(@/assets/images/bg1.png)",
},
fontFamily: {
"IBMPlexMono-Regular": ["IBM Plex Mono Regular"],
"IBMPlexMono-Bold": ["IBM Plex Mono Bold"],
"IBMPlexMono-Light": ["IBM Plex Mono Light"],
"IBMPlexMono-SemiBold": ["IBM Plex Mono SemiBold"],
"Inter-Bold": ["Inter-Bold"],
"Inter-Regular": ["Inter-Regular"],
"Inter-SemiBold": ["Inter-SemiBold"],
},
colors: {
// 浅绿色渐变 - 炫彩(白) - 起始
"xc1-a": "#53C78E",
// 浅绿色渐变 - 炫彩(白) - 结束
"xc1-b": "#9CCB28",
// 浅绿色渐变 - 炫彩2 - 起始
"xc2-a": "#79D5A8",
// 浅绿色渐变 - 炫彩2 - 结束
"xc2-b": "#D5F97D",
innerColor: "#14434E",
globalBg: "#1B1B1C",
},
},
},
};