-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
90 lines (90 loc) · 1.95 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ['./src/**/*.{html,js}', './index.html'],
theme: {
extend: {
backgroundImage: {
'hero-image': "url('')",
},
screens: {
'phone': '400px',
'tablet': '1009px',
'tablet2': '1298px',
},
fontFamily: {
'agrandir-wide': ['AGRANDIR', 'sans-serif'],
'poppins': ['Poppins'],
},
colors: {
primary: '#D2C4A8',
secondary: '#FFF1DB',
asset: '#F3F3F3',
asset2: '#FFEAC2',
success: '#2ECC71',
danger: '#E74C3C',
warning: '#E67E22',
info: '#34495E',
light: '#F1C40F',
dark: '#2C3E50',
},
width: {
'500': '500px',
},
height: {
'84': '84px',
'90': '90px',
'100': '100px',
'120': '120px',
'200': '200px',
'350': '350px',
'400': '400px',
'450': '450px',
'500': '500px',
'600': '600px',
'700': '700px',
'800': '800px',
'850': '850px',
'900': '900px',
},
margin: {
'20': '20px',
'30': '30px',
'40': '40px',
'50': '50px',
'60': '60px',
'70': '70px',
'80': '80px',
'90': '90px',
'100': '100px',
'200': '200px',
'300': '300px',
'350': '350px',
'400': '400px',
'500': '500px',
'600': '600px',
'670': '670px',
'900': '900px',
},
padding: {
'20': '20px',
'30': '30px',
'40': '40px',
'50': '50px',
'60': '60px',
'70': '70px',
'80': '80px',
'90': '90px',
'100': '100px',
'200': '200px',
'300': '300px',
'350': '350px',
'400': '400px',
'500': '500px',
'600': '600px',
'670': '670px',
'900': '900px',
}
},
},
plugins: [],
}