-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
79 lines (79 loc) · 1.8 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
79
module.exports = {
purge: {
enabled: true,
content: ["./public/**/*.html", "./public/**/*.js"],
},
darkMode: false, // or 'media' or 'class'
theme: {
extend: {
fontFamily: {
primary: ["Open Sans", "sans-serif"],
},
textColor: {
primary: "#343a40",
secondary: {
200: "#fa7578",
300: "#fa6467",
400: "#f95356",
500: "#e04b4d",
600: "#c74245",
},
accent: "#284477",
},
backgroundColor: {
secondary: {
200: "#fa7578",
300: "#fa6467",
400: "#f95356",
500: "#e04b4d",
600: "#c74245",
},
accent: "#284477",
primary: "#343a40",
pink: {
300: "#F1D9E1",
500: "#D59294",
},
maroon: "#25121A",
sky: "#7DAAD8",
},
borderColor: {
primary: "#343a40",
secondary: "#fa6467",
},
gridTemplateColumns: {
reviews: "repeat(auto-fit, minmax(17rem, 1fr))",
destinations: "repeat(auto-fit, minmax(15.5rem, 1fr))",
"destinations-small": "repeat(auto-fit, minmax(auto, 15.5rem))",
shop: "repeat(auto-fit, minmax(16.875rem, 1fr))",
profile: "max-content repeat(2, 1fr)",
},
gridAutoRows: {
destination: "minmax(auto, 13rem)",
},
maxHeight: {
destination: "28rem",
},
minHeight: {
product: "19rem",
},
spacing: {
"fixed-sm": "4.5rem",
"fixed-md": "5.5rem",
},
padding: {
carousel: "21.0625rem",
},
backgroundImage: {
"shop-hero2": "url('/img/man-in-flowers.webp')",
},
screens: {
xs: "400px",
},
},
},
variants: {
extend: {},
},
plugins: [],
};