-
Notifications
You must be signed in to change notification settings - Fork 18
/
tailwind.config.js
71 lines (68 loc) · 1.16 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
63
64
65
66
67
68
69
70
71
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ['./src/**/*.{js,jsx,ts,tsx}'],
theme: {
extend: {
colors: {
bgColor: '#0A39E0',
bgColorLight: 'rgba(10, 57, 224, 0.80)',
logo: '#DDE1FC',
hover: '#beccffbe',
sponsors: 'rgba(108, 117, 125, 1)'
},
fontFamily: {
serrat: ['Montserrat'],
roboto: ['Roboto'],
jakarta: ['Plus Jakarta Sans']
},
fontWeight: {
thin: '100',
extralight: '200',
light: '300',
normal: '400',
medium: '500',
semibold: '600',
bold: '700',
extrabold: '800',
black: '900',
},
spacing: {
13: '3.25rem',
15: '3.75rem',
128: '32rem',
144: '36rem',
},
spacing: {
1: '8px',
2: '12px',
3: '16px',
4: '24px',
5: '32px',
6: '48px',
73: '73px',
45: '45vh',
60: '60vh',
90: '90vh',
304: '304px',
83: '83px',
43: '43px',
80: '80px'
},
lineHeight: {
'extra-loose': '2.5',
12: '4rem',
fit: '8',
},
fontSize: {
40: ['40px', {lineHeight: '3.5rem'}]
},
borderRadius: {
35: '35px'
},
borderWidth: {
0.4: '0.42px'
}
},
},
plugins: [],
};