-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
46 lines (43 loc) · 1.46 KB
/
tailwind.config.js
File metadata and controls
46 lines (43 loc) · 1.46 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
const defaultTheme = require('tailwindcss/defaultTheme');
module.exports = {
content: [
'./vendor/laravel/framework/src/Illuminate/Pagination/resources/views/*.blade.php',
'./vendor/laravel/jetstream/**/*.blade.php',
'./storage/framework/views/*.php',
'./resources/views/**/*.blade.php',
],
theme: {
extend: {
fontFamily: {
sans: ['Nunito', ...defaultTheme.fontFamily.sans],
},
backgroundImage: theme => ({
'home-1': "url('/img/bg/home-1.jpg')",
'home-2': "url('/img/bg/home-2.jpg')",
'products-vtcm-home': "url('/img/bg/products-vtcm-home.png')",
'sponsoring': "url('/img/bg/sponsoring.jpg')",
//errors
'404': "url('/img/bg/404.jpg')",
}),
minHeight: {
'25vh': '25vh',
},
backgroundColor: theme => ({
'dark-1': '#0d0d0d',
'dark-2': '#121212',
'dark-3': '#1c1c1c',
'dark-4': '#2b2b2b',
'dark-5': '#363636',
}),
borderColor: {
'dark-1': '#333',
'dark-2': '#3d3d3d',
'dark-3': '#4d4d4d',
},
textColor: {
'dark': '#7d7d7d',
}
},
},
plugins: [require('@tailwindcss/forms'), require('@tailwindcss/typography')],
};