-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
43 lines (43 loc) · 985 Bytes
/
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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ['./**/*.html'],
theme: {
screens: {
sm: '480px',
md: '768px',
lg: '1020px',
xl: '1440px',
},
extend: {
colors: {
darkGray: '#333333',
medGray: '#bdbdbd',
containerBgGray: '#fcfcfc',
lightGray: '#f6f6f6',
semiGray: '#efefef',
hoverGray: '#D1D1D1',
succes: '#40B453',
error: '#EE2130',
},
fontFamily: {
sans: ['Roboto', 'sans-serif'],
},
letterSpacing: {
verywide: '0.2rem',
},
maxHeight: {
120: '30rem',
180: '45rem',
},
fontSize: {
'10xl': ['10rem', '10rem'],
},
backgroundImage: () => ({
contactForm: "url('../images/office/contact-form.jpg')",
about: "url('../images/office/about.jpg')",
contact: "url('../images/office/contact.jpg')",
}),
},
},
plugins: [],
};