-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
78 lines (78 loc) · 1.96 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
module.exports = {
content: ["./src/**/*.{js,jsx,ts,tsx}"],
theme: {
extend: {
animation: {
"fade-in-fast": "fade-in 0.5s ease-in-out",
"fade-in": "fade-in 3s ease-in-out",
"fade-out": "fade-out 3s ease-in-out",
},
backgroundImage: {
"primary-gradient": "linear-gradient(175.22deg, #8A202B -4.38%, #A43344 34.51%, #AC394C 66.36%, #8A202B 116.67%);",
landing: 'url("/src/assets/images/landingBackground.svg")',
},
colors: {
primary: "#8A202B",
gray: {
1: "#323232",
},
red: {
1: "#bc4646",
2: "#b32f4e",
},
},
fontFamily: {
NotoSansThai: ["NotoSansThai", "san-serif"],
Chulalongkorn: ["CHULALONGKORN", "sans-serif"],
MuseoModerno: ["MuseoModerno", "sans-serif"],
BaiJamjuree: ["BaiJamjuree", "sans-serif"],
},
fontSize: {
"5xl": ["64px", "96px"],
"4xl": ["48px", "72px"],
"3xl": ["36px", "54px"],
"2xl": ["28px", "42px"],
xl: ["24px", "36px"],
lg: ["20px", "30px"],
base: ["18px", "27px"],
sm: ["16px", "20px"],
xs: ["14px", "17.5px"],
"2xs": ["12px", "15px"],
"3xs": ["10px", "12.5px"],
"4xs": ["8px", "10px"],
},
keyframes: {
"fade-in": {
"0%": {
opacity: "0",
},
"100%": {
opacity: "1",
},
},
"fade-out": {
"0%": {
opacity: "1",
},
"100%": {
opacity: "0",
},
},
},
screens: {
"mobile-s": "320px",
"mobile-m": "370px",
"mobile-l": "425px",
sm: "640px",
md: "768px",
lg: "1024px",
xl: "1280px",
"2xl": "1536px",
},
},
fontFamily: {
BaiJamjuree: ["Bai Jamjuree", "san-serif"],
},
},
plugins: [require("tailwind-scrollbar")],
}