-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
49 lines (49 loc) · 954 Bytes
/
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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ['./src/**/*.{vue,js,ts,jsx,tsx}'],
theme: {
extend: {
fontFamily: {
sans: ['Gabarito', 'sans-serif']
},
colors: {
primary: '#64A577',
black: '#1e1e1e',
white: '#f2f2f2',
'almost-black': '#323232',
'almost-black-lighter': '#424242'
},
scale: {
101: '101%',
102: '102%'
},
borderWidth: {
3: '3px'
},
letterSpacing: {
hover: '0.15em'
},
height: {
'9/10': '90%'
},
spacing: {
'1/2': '50%',
'1/10': '10%',
30: '7.5rem'
},
fontSize: {
'7.5xl': '5rem',
humongous: '18.5rem'
},
width: {
'50s': '50vw'
},
borderRadius: {
'2.5xl': '1.25rem',
'4xl': '1.75rem',
'5xl': '2rem'
}
}
},
plugins: []
}