-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
50 lines (45 loc) · 1020 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
50
const colors = require('tailwindcss/colors')
module.exports = {
mode: 'jit',
purge: ['./index.html', './src/**/*.{vue,js,ts,jsx,tsx}'],
darkMode: false,
theme: {
colors: {
transparent: 'transparent',
current: 'currentColor',
black: colors.black,
white: colors.white,
gray: colors.blueGray,
blue: colors.sky,
purple: colors.purple,
},
extend: {
animation: {
swing: 'swing 1.5s ease-in-out infinite',
},
keyframes: {
swing: {
'20%': {
transform: 'rotate3d(0, 0, 1, 15deg)',
},
'40%': {
transform: 'rotate3d(0, 0, 1, -10deg)',
},
'60%': {
transform: 'rotate3d(0, 0, 1, 5deg)',
},
'80%': {
transform: 'rotate3d(0, 0, 1, -5deg)',
},
to: {
transform: 'rotate3d(0, 0, 1, 0deg)',
},
},
},
},
},
variants: {
extend: {},
},
plugins: [],
}