generated from iMuzz/web3-starter
-
Notifications
You must be signed in to change notification settings - Fork 1
/
tailwind.config.js
38 lines (37 loc) · 860 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
const colors = require('tailwindcss/colors')
module.exports = {
purge: ['./pages/**/*.{js,ts,jsx,tsx}', './components/**/*.{js,ts,jsx,tsx}'],
darkMode: 'class', // or 'media' or 'class'
theme: {
extend: {
transitionProperty: {
'max-height': 'max-height',
},
keyframes: {
rotate: {
'100%': {
transform: 'rotate(360deg)',
},
},
dash: {
'0%': {
strokeDasharray: '0, 150',
opacity: '1',
stroke: '#2185d0',
},
'100%': {
strokeDasharray: '120',
},
},
},
animation: {
spinnerTimer: 'dash 5s linear infinite',
rainbow: 'rainbow 5s linear infinite',
},
},
},
variants: {
extend: {},
},
plugins: [require('@tailwindcss/forms')],
}