-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
70 lines (70 loc) · 1.43 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./src/**/*.{js,jsx,ts,tsx}",
],
theme: {
extend: {
width: {
150: '150px',
190: '190px',
225: '225px',
275: '275px',
300: '300px',
340: '340px',
350: '350px',
375: '375px',
460: '460px',
656: '656px',
880: '880px',
508: '508px'
},
height: {
80: '80px',
120: '120px',
150: '150px',
225: '225px',
300: '300px',
340: '340px',
370: '370px',
420: '420px',
450: '450px',
490: '490px',
510: '510px',
600: '600px',
650: '650px',
685: '685px',
800: '800px',
"90vh": "90vh"
},
minWidth: {
210:'210px',
350:'350px',
620:'620px'
},
screens: {
xsm:'500px',
sm:'640px',
md:'768px',
lg:'1024px',
xl:'1280px',
'2xl':'1536px'
},
colors: {
headingColor: "#2e2e2e",
textColor: "#515151",
cartNumBg: "#e80013",
primary: "#f5f3f3",
cardOverlay: "rgba(256, 256, 256, 0.4)",
card: "rgba(256, 256, 256, 0.8)",
lightTextGray: '#9ca0ab',
cartBg: '#282a2c',
cartItem: '#2e3033',
cartTotal: '#343739'
}
},
},
plugins: [
require('tailwind-scrollbar')
],
}