-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
75 lines (75 loc) · 1.37 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
72
73
74
75
module.exports = {
purge: [
'./public/index.html',
'./src/*.{vue,js}',
'./src/**/*.{vue,js}',
],
darkMode: false, // or 'media' or 'class'
theme: {
container: {
center: true,
},
fontFamily: {
montserrat: ['Montserrat, sans-serif'],
},
extend: {
colors: {
blue: {
500: '#3482ab',
900: '#08121E',
},
gray: {
300: '#D6D6D6',
},
green: {
500: '#3e8c17',
},
orange: {
500: '#bc6521',
},
teal: {
200: '#26A6AD',
500: '#14696d',
},
},
fontSize: {
'0.625': '0.625rem',
},
height: {
'140': '35rem',
'112': '28rem',
'min-content': 'min-content',
},
gridTemplateColumns: {
15: 'repeat(15, minmax(0, 1fr))',
},
letterSpacing: {
'0.15': '0.15em',
},
minHeight: {
'200': '50rem',
'260': '65rem',
},
screens: {
'2xl': '1440px',
},
spacing: {
'3.4': '.85rem',
'5%': '5%',
'30%': '30%',
'40%': '40%',
'70%': '70%',
'80%': '80%',
},
},
},
variants: {
extend: {
brightness: ['hover'],
margin: ['first', 'last'],
},
},
plugins: [
require('tailwind-scrollbar-hide')
]
}