-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
62 lines (60 loc) · 1.26 KB
/
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./src/**/*.{js,jsx,ts,tsx}",],
theme: {
extend: {
width: {
'para': '444px',
'blur_shadow': '761px',
},
height: {
'blur_shadow': '761px',
}
},
fontFamily: {
'bellefair': ['Bellefair', 'serif'],
'barlow': ['Barlow Condensed', 'sans-serif'],
},
fontSize: {
'heading': ['28px', {
lineSpacing: '4.725px',
fontWeight: '400',
}],
'name': ['56px', {
fontWeight: '400',
}],
'para': ['18px', {
lineHeight: '32px',
fontWeight: '400',
}],
// HOME
'hover_text': ['32px', {
letterSpacing: '2px',
fontWeight: '400',
}],
'space': ['150px', {
fontWeight: '400',
}],
// DESTINATION
'main_heading': ['16px', {
lineSpacing: '2.7px',
fontWeight: '400',
}],
'main': ['100px', {
fontWeight: '400',
}],
'subheading': ['14px', {
lineSpacing: '2.362px',
fontWeight: '400',
}],
'numbers': ['28px', {
fontWeight: '400',
}],
//CREW
'title': ['32px', {
fontWeight: '400',
}],
}
},
plugins: [],
}