-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathtailwind.config.js
76 lines (76 loc) · 1.7 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
module.exports = {
content: [
'./pages/**/*.{js,jsx}',
'./components/**/*.{js,jsx}',
'node_modules/flowbite-react/**/*.{js,jsx,ts,tsx}',
],
darkMode: 'class',
theme: {
extend: {
colors: {
'prim-dark': '#24252D',
'prim-gray-1': '#E3E1E3',
'prim-gray-2': '#888888',
'prim-gray-3': '#4F4F4F',
'prim-black-1': '#2D2E36',
'prim-black-2': '#1B1A21',
'prim-black-3': '#2A2D3A',
'prim-black-4': '#24252D',
'prim-blue': '#57C6DC',
'prim-pink': '#E287D4',
},
padding: {
30: '120px',
160: '640px',
140: '560px',
},
margin: {
30: '120px',
},
width: {
200: '200px',
300: '300px',
400: '400px',
500: '500px',
700: '700px',
900: '900px',
},
height: {
200: '200px',
300: '300px',
500: '500px',
700: '700px',
900: '900px',
},
screens: {
lg: { max: '1800px' },
md: { max: '1080px' },
sm: { max: '600px' },
xs: { max: '400px' },
galaxyfold: { max: '280px' },
iphoneSE: { max: '375px' },
duoscreen: '300px',
surfaceDuo: '540px',
mobile: '600px',
note: '800px',
nestHub: '1024px',
tablet: '1080px',
laptop: '1230px',
pc: '1500px',
minmd: '1700px',
minlg: '2100px',
},
},
fontFamily: {
poppins: ['Poppins', 'sans-serif'],
},
},
variants: {
extend: {
backgroundColor: ['dark'],
textColor: ['dark'],
},
},
// eslint-disable-next-line global-require
plugins: [require('flowbite/plugin')],
};