-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
49 lines (49 loc) · 1.02 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
/** @type {import('tailwindcss').Config} */
export default {
content: ["./src/**/*.tsx"],
theme: {
screens: {
mb: "375px",
tablet: "750px",
},
maxWidth: {
card: "728px",
},
fontFamily: {
sans: ["Commissioner", "sans-serif"],
},
fontSize: {
1: "2rem",
2: "1.75rem",
3: "1.563rem",
4: "1.5rem",
5: "1.25rem",
6: "1.13rem",
7: "1rem",
8: "0.95rem",
9: "0.87rem",
},
fontWeight: {
normal: "400",
medium: "500",
bold: "700",
},
extend: {
colors: {
"primary-1": "hsl(176, 50%, 47%)",
"primary-2": "hsl(176, 72%, 28%)",
"neutral-1": "hsl(0, 0%, 0%)",
"neutral-2": "hsl(0, 0%, 48%)",
},
backgroundImage: {
"hero-mobile": "url('./images/image-hero-mobile.jpg')",
"hero-desktop": "url('./images/image-hero-desktop.jpg')",
},
padding: {
card: "1.5rem",
"card-tablet": "2.8rem",
},
},
},
plugins: [],
};