-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
44 lines (44 loc) · 1.1 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ['*.{html,js}'],
theme: {
container: {
padding: {
DEFAULT: '15px'
}
},
screens: {
sm: '640px',
md: '768px',
lg: '960px',
xl: '1330px'
},
extend: {
colors: {
primary: '#242a2b',
secondary: '#808080',
accent: {
DEFAULT: '#1cbccf',
secondary: '#18abbc',
tertiary: '#90c6cd'
},
grey: '#e8f0f1'
},
fontFamily: {
primary: 'Poppins'
},
boxShadow: {
custom1: '0px 2px 40px 0px rgba(8,70,78,0.08)',
custom2: '0px 0px 30px 0px rgba(8,73,81,0.06)'
},
backgroundImage: {
services: 'url(../../assets/img/services/services.svg)',
testimonials: 'url(../../assets/img/testimonials/testimonials.svg)',
departments: 'url(../../assets/img/departments/bg.svg)',
quoteLeft: 'url(../../assets/icons/testimonials/quote-left.svg)',
quoteRight: 'url(../../assets/icons/testimonials/quote-right.svg)'
}
}
},
plugins: []
}