-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
72 lines (72 loc) · 1.98 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
/** @type {import('tailwindcss').Config} */
export default {
content: ["./index.html", "./src/**/*.{js,ts,jsx,tsx}"],
theme: {
screens: {
sm: "640px",
md: "768px",
lg: "992px",
xl: "1200px",
},
container: {
center: true,
padding: "1rem",
},
fontFamily: {
lato: ["Lato", "sans-serif"],
},
extend: {
fontSize: {
h1: [
"clamp(2.25rem, 4vw, 3.375rem)",
{
lineHeight: "normal",
fontWeight: "700",
},
],
h2: [
"clamp(2rem, 4vw, 2.75rem)",
{
lineHeight: "normal",
fontWeight: "700",
},
],
h3: [
"clamp(1.75rem, 4vw, 2.25rem)",
{
lineHeight: "normal",
fontWeight: "700",
},
],
},
colors: {
primary: {
10: "#535c11",
20: "#75811f",
30: "#98a72c",
40: "#bacc3a",
50: "#ddf247",
60: "#e4f56c",
70: "#ebf791",
80: "#f1fab5",
90: "#f8fcda",
},
gray: {
10: "#292c32",
20: "#393e45",
30: "#4a4f59",
40: "#5a616c",
50: "#6a7280",
60: "#7d8491",
70: "#9096a1",
80: "#a4a9b2",
90: "#b7bbc2",
},
},
borderRadius: {
"4xl": "32px",
},
},
},
plugins: [],
};