-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
46 lines (46 loc) Β· 1.63 KB
/
Copy pathtailwind.config.js
File metadata and controls
46 lines (46 loc) Β· 1.63 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
/** @type {import('tailwindcss').Config} */
export default {
content: [
'./index.html',
'./src/**/*.{js,ts,jsx,tsx}'
],
theme: {
fontFamily: {
sans: ['Barlow', 'Barlow Condensed', 'sans-serif'],
serif: ['Bellefair', 'serif']
},
extend: {
colors: {
darkBlue: '#0B0D17',
skyBlue: '#D0D6F9'
},
fontSize: {
'5xl': '150px',
'4xl': '100px',
'3xl': '56px',
'2xl': '34px',
xl: '28px',
base: '18px',
sm: '16px'
},
backgroundImage: {
bgHomeDesktop: "url('/src/assets/home/background-home-desktop.jpg')",
bgHomeTablet: "url('/src/assets/home/background-home-tablet.jpg')",
bgHomeMobile: "url('/src/assets/home/background-home-mobile.jpg')",
bgCrewDesktop: "url('/src/assets/crew/background-crew-desktop.jpg')",
bgCrewTablet: "url('/src/assets/crew/background-crew-tablet.jpg')",
bgCrewMobile: "url('/src/assets/crew/background-crew-mobile.jpg')",
bgDestinationDesktop: "url('/src/assets/destination/background-destination-desktop.jpg')",
bgDestinationTablet: "url('/src/assets/destination/background-destination-tablet.jpg')",
bgDestinationMobile: "url('/src/assets/destination/background-destination-mobile.jpg')",
bgTechDesktop: "url('/src/assets/technology/background-technology-desktop.jpg')",
bgTechTablet: "url('/src/assets/technology/background-technology-tablet.jpg')",
bgTechMobile: "url('/src/assets/technology/background-technology-mobile.jpg')"
},
screens: {
'2xl': '1440px'
}
}
},
plugins: []
}