-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtailwind.config.js
More file actions
46 lines (45 loc) · 1.05 KB
/
Copy pathtailwind.config.js
File metadata and controls
46 lines (45 loc) · 1.05 KB
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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./src/**/*.{jsx,js,tsx,ts}"],
theme: {
backgroundImage: {
'home-background': "url('./images/homeBg.jpg')",
'we-provide':"url('./images/we-provide.jpg')",
'why-md':'./images/why-md.jpg',
'gradient-to-r': 'linear-gradient(to right, var(--tw-gradient-stops))'
},
scale: {
'102':'1.02',
'101':'1.01'
},
backgroundSize: {
'200%': '200%',
'100%': '100%',
'cover':'cover',
'contain': 'contain'
},
textColor: {
'primary-blue':'#0e55e7',
'primary-white':'#FFFFFF',
'primary-green':'#00980f',
'primary-yellow': '#ecae06',
'primary-purple': '#930ebd',
'error': '#cc0000'
},
fontFamily: {
'poppins': ['Poppins', 'sans-serif'],
'logo': ['Playball', 'cursive']
},
screens: {
'sm':'400px',
'sm-xl':'600px',
'md': '768px',
'md-xl': '960px',
'lg': '1024px',
'lg-xl':'1135px'
},
extend: {
}
},
plugins: [],
}