forked from mollerjorge/gulpie-web
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
60 lines (59 loc) · 1.29 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
const colors = require('tailwindcss/colors')
module.exports = {
mode: 'jit',
purge: ['./public/*.html'],
darkMode: 'class',
theme: {
extend: {
lineClamp: {
10: '10'
},
spacing: {
128: '32rem',
160: '40rem'
},
container: {
center: true,
padding: {
DEFAULT: '1rem',
lg: '1.5rem'
},
screens: {
lg: '1152px'
}
},
colors: {
turqoise: colors.cyan,
gray: colors.blueGray,
black: {
dark: '#333333',
DEFAULT: '#858A8F',
light: '#AAB0B7'
},
'dark-100': '#13151D',
'dark-200': '#1F2129',
'dark-300': '#2B2D33'
},
borderRadius: {
medium: '0.312rem'
},
boxShadow: {
drawer: '0 35px 60px -15px rgba(0, 0, 0, 0.3)',
testimonial: '0 63px 50px 0 rgba(0,0,0,0.07)',
blue: '0 0px 60px 15px rgba(55, 125, 255, 0.1)'
},
gradientColorStops: ['group-hover']
},
fontFamily: {
inter: 'Inter, sans-serif'
}
},
variants: {
extend: {
opacity: ['disabled'],
pointerEvents: ['disabled'],
textColor: ['checked']
}
},
plugins: [require('@tailwindcss/line-clamp'), require('@tailwindcss/forms')]
}