-
Notifications
You must be signed in to change notification settings - Fork 1
/
tailwind.config.js
49 lines (47 loc) · 958 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
module.exports = {
// mode: 'jit',
purge: [
'./**/*.html',
// './**/*.{js,jsx,ts,tsx,vue}',
'./src/**/*.{js,jsx,ts,tsx,vue}',
],
darkMode: false, // or 'media' or 'class'
theme: {
extend: {
textDecoration: ['active'],
fontFamily: {
'montserrat': ['"Montserrat"', 'sans-serif'],
'light': ['Eina Light'],
'semibold': ['Eina Bold'],
'eina': ['Eina'],
},
fontSize: {
'xxs': '.6rem',
'smaller': '.95rem',
'smallest': '.45rem'
},
textColor: {
'base': '#000008',
},
screens: {
'mobile': '600px',
'c_large': '1200px',
'desktop': '1440px'
},
maxWidth: {
"fw": "1440px",
},
height: {
custom: '18rem',
banner: '26rem',
},
margin: {
"22": '5.23rem'
}
},
},
variants: {
extend: {},
},
plugins: [],
}