-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
41 lines (41 loc) · 902 Bytes
/
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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./src/**/*.{js,jsx,ts,tsx}",
],
theme: {
extend: {
maxWidth: {
container: "1440px"
},
screens: {
xs: "320px",
sm: "375px",
sml: "500px",
md: "667px",
mdl: "768px",
lg: "960px",
lgl: "1024px",
xl: "1280px",
},
fontFamily: {
titleFont: "Roboto",
bodyFont: "Poppins"
},
colors: {
amazon_blue: "#131921",
amazon_light: "#232F3E",
amazon_yellow: "#FEBD69",
whiteText: "#FFFFFF",
lightText: "#ccc",
quantity_box: "#F0F2F2",
footerBottom: "#131A22",
},
boxShadow: {
textShadow: "0px 0px 32px 1px rgba(199, 199, 199, 1)",
amazonInput: "0 0 3px 2px rgb(228 121 17 / 50%)"
}
},
},
plugins: [],
}