-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
51 lines (50 loc) · 1.34 KB
/
tailwind.config.js
File metadata and controls
51 lines (50 loc) · 1.34 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
46
47
48
49
50
/** @type {import('tailwindcss').Config} */
const withMT = require("@material-tailwind/react/utils/withMT");
module.exports = withMT({
content: ['*.{html,js}'],
theme: {
container: {
padding: {
DEFAULT: '15px',
sm: '20px',
lg: '30px',
xl: '40px',
}
},
screens: {
sm: '648px',
md: '768px',
lg: '968px',
xl: '1338px',
},
extend: {
colors: {
primary: '#367cc3',
secondary: '#898989',
accent: {
DEFAULT: '#367cc3',
secondary: '#508ccb',
tertiary: '#7dacdc',
},
grey: '#ebc405',
},
fontFamily: {
primary: 'Poppins'
},
boxShadow: {
custom1: '8px 2px 40px 0px rgba(8, 70, 78, 0.08)',
custom2: '8px 8px 30px 0px rgba(8, 73, 81, 0.06)',
},
backgroundImage: {
services: 'url(../../assets/img/services/9076068.jpg)',
testimonials: 'url(../../assets/img/testimonials/bg.svg)',
departements: 'url(../../assets/img/departements/bg.svg)',
quoteLeft: 'url(../../assets/icon/testimonials/quote-left.svg)',
quoteRight: 'url(../../assets/icon/testimonials/quote-right.svg)',
client: 'url(../../assets/icon/stats/icon5.png)',
stats: 'url(../../assets/img/stats/bag.jpg)',
}
},
},
plugins: [],
});