-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
54 lines (54 loc) · 1.2 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ['./src/**/*.{js,jsx,ts,tsx}'],
theme: {
// fontFamily: {
// primary: '"Exo 2"',
// },
container: {
center: true,
padding: {
DEFAULT: '15px',
sm: '15px',
md: '30px',
lg: '30px',
xl: '30px',
},
},
screens: {
'sm': '640px',
'md': '768px',
'lg': '1024px',
'xl': '1280px',
},
extend: {
colors: {
body: '#1D1F23',
primary: '#4F46E5',
accent: {
DEFAULT: '#4F46E5',
hover: '#4439CC',
},
},
keyframes: {
shake: {
'10%, 90%': { transform: 'translate3d(-1px, 0,0 )' },
'20%, 80%': { transform: 'translate3d(2px, 0,0 )' },
'30%, 50%, 70%': { transform: 'translate3d(-4px, 0,0 )' },
'40%, 60%': { transform: 'translate3d(4px, 0,0 )' },
},
},
animation: {
shake: 'shake 1s ease-in-out',
},
},
},
variants: {
float: ['responsive', 'direction'],
margin: ['responsive', 'direction'],
padding: ['responsive', 'direction'],
},
plugins: [
require('tailwindcss-dir')(),
],
}