-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.cjs
43 lines (43 loc) · 1.76 KB
/
tailwind.config.cjs
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: [
"./index.html",
"./src/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
colors: {
primary: '#D0D6F9',
secondary: '#0B0D17',
white: 'hsl(0, 0%, 100%)',
whiteBlur: 'hsla(0, 0%, 100%, 4%)',
borderColor: '#383B4B',
},
fontFamily: {
barlow: ['Barlow', 'sans-serif'],
barlowCondensed: ['Barlow Condensed', 'sans-serif'],
bellefair: ['Bellefair', 'serif']
},
backgroundImage: {
backgroundHome: "url('assets/home/background-home-mobile.jpg')",
backgroundHomeTablet: "url('assets/home/background-home-tablet.jpg')",
backgroundHomeDesktop: "url('assets/home/background-home-desktop.jpg')",
backgroundDestination: "url('assets/destination/background-destination-mobile.jpg')",
backgroundDestinationTablet: "url('assets/destination/background-destination-tablet.jpg')",
backgroundDestinationDesktop: "url('assets/destination/background-destination-desktop.jpg')",
backgroundCrew: "url('assets/crew/background-crew-mobile.jpg')",
backgroundCrewTablet: "url('assets/crew/background-crew-tablet.jpg')",
backgroundCrewDesktop: "url('assets/crew/background-crew-desktop.jpg')",
backgroundTechnology: "url('assets/technology/background-technology-mobile.jpg')",
backgroundTechnologyTablet: "url('assets/technology/background-technology-tablet.jpg')",
backgroundTechnologyDesktop: "url('assets/technology/background-technology-desktop.jpg')",
backgroundMain: "url('assets/shared/main-layout.jpg')",
},
screens: {
'desktop': '1440px',
// => @media (min-width: 1440px) { ... }
}
},
},
plugins: [],
}