-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
44 lines (39 loc) · 1.75 KB
/
Copy pathtailwind.config.js
File metadata and controls
44 lines (39 loc) · 1.75 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
'./pages/**/*.{js,ts,jsx,tsx}',
'./components/**/*.{js,ts,jsx,tsx}',
],
theme: {
extend: {
backgroundImage: {
'homeDesktop': "url('/assets/home/background-home-desktop.jpg') ",
'homeTablet': "url('/assets/home/background-home-tablet.jpg') ",
'homeMobile': "url('/assets/home/background-home-mobile.jpg') ",
'destinationDesktop': "url('/assets/destination/background-destination-desktop.jpg') ",
'destinationTablet': "url('/assets/destination/background-destination-tablet.jpg') ",
'destinationMobile': "url('/assets/destination/background-destination-mobile.jpg') ",
'crewMobile': "linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),url('/assets/crew/background-crew-mobile.jpg')",
'crewTablet': "linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),url('/assets/crew/background-crew-tablet.jpg') ",
'crewDesktop': "linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),url('/assets/crew/background-crew-desktop.jpg') ",
'technologyMobile': "url('/assets/technology/background-technology-mobile.jpg')",
'technologyTablet': "url('/assets/technology/background-technology-tablet.jpg') ",
'technologyDesktop': "url('/assets/technology/background-technology-desktop.jpg') ",
},
colors: {
white: '#ffffff',
darkBlue: '#0B0D17',
lightBlue: '#D0D6F9',
lightGray: '#979797',
darkGray: "#36373F",
veryDarkGray: '#383B4B'
},
fontFamily: {
'sans': ['Barlow', 'sans-serif'],
'heading': ['Bellefair', 'sans-serif'],
'subHeading2': ['Barlow Condensed', 'sans-serif']
},
},
},
plugins: [],
}