-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtailwind.config.js
40 lines (39 loc) · 959 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
const colors = require('tailwindcss/colors')
module.exports = {
theme: {
extend: {
colors: {
gray: colors.neutral, // renamed to 'neutral' in v3.0
mapboxBase: '#343332',
btcOrange: '#f7931a'
},
container: {
center: true,
padding: '1rem'
},
dropShadow: {
'white-1': '0 0 1px rgb(255, 255, 255)',
'white-2': '0 0 2px rgb(255, 255, 255)',
'white-3': '0 0 3px rgb(255, 255, 255)'
},
scale: {
200: '2'
},
animation: {
breath: 'breath 1s infinite'
},
keyframes: {
breath: {
'0%, 100%': { transform: 'scale(1.5)', 'animation-timing-function': 'cubic-bezier(0.8, 0, 1, 1)' },
'50%': { transform: 'scale(2.2)', 'animation-timing-function': 'cubic-bezier(0, 0, 0.2, 1)' }
}
}
}
},
variants: {
extend: {}
},
plugins: [
require('@tailwindcss/forms')
]
}