-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
94 lines (94 loc) · 1.9 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
module.exports = {
mode: "jit",
purge: ["./src/**/*.{js,jsx,ts,tsx}"],
darkMode: false,
theme: {
extend: {
colors: {
body: "#5A5A5A",
heading: "#212121",
input: "#1D1E1F",
black: "#000",
white: "#fff",
linen: "#FBF1E9",
linenSecondary: "#ECE7E3",
olive: "#3D9970",
maroon: "#B03060",
brown: "#C7844B",
placeholder: "#707070",
borderBottom: "#f7f7f7",
facebook: "#4267B2",
facebookHover: "#395fad",
google: "#4285F4",
googleHover: "#307bf9",
gray: {
50: "#FBFBFB",
100: "#F1F1F1",
150: "#F4F4F4",
200: "#F9F9F9",
300: "#E6E6E6",
350: "#E9ECEF",
400: "#999999",
500: "#D8D8D8",
600: "#3A3A3A",
700: "#292929",
800: "#707070",
},
},
fontSize: {
"10px": ".625rem",
},
screens: {
sm: "480px",
lg: "1025px",
"2xl": "1500px",
"3xl": "1780px",
},
spacing: {
"430px": "430px",
"450px": "450px",
"500px": "500px",
"64vh": "64vh",
},
minHeight: {
"50px": "50px",
},
scale: {
80: "0.8",
85: "0.85",
300: "3",
400: "4",
},
animation: {
shine: "shine 1s",
},
keyframes: {
shine: {
"100%": { left: "125%" },
},
},
},
boxShadow: {
cart: "0 3px 6px rgba(0,0,0,0.12)",
product: "0 6px 12px rgba(0,0,0,.08)",
listProduct: "0 2px 4px rgba(0,0,0,.08)",
navigation: "0 3px 6px rgba(0, 0, 0, 0.16)",
navigationReverse: "0 -3px 6px rgba(0, 0, 0, 0.16)",
header: "0 2px 3px rgba(0, 0, 0, 0.08)",
subMenu: "1px 2px 3px rgba(0, 0, 0, 0.08)",
bottomNavigation: "0 -2px 3px rgba(0, 0, 0, 0.06)",
cookies: "0 -2px 3px rgba(0, 0, 0, 0.04)",
},
fontFamily: {
body: ["'Open Sans', sans-serif"],
satisfy: ["'Satisfy', cursive"],
segoe: ["'Segoe UI', sans-serif"],
},
},
plugins: [
require("@tailwindcss/forms")({
strategy: "class",
}),
require("tailwindcss-rtl"),
],
};