-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
38 lines (38 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
'./pages/**/*.{js,ts,jsx,tsx}',
'./components/**/*.{js,ts,jsx,tsx}',
],
theme: {
container: {
center: true,
},
extend: {
colors: {
'ei-dark-green': '#004244',
'ei-green': '#22C68A',
'ei-light-green': '#BEE3D3',
'ei-darker-green': '#00383A',
'subtitle-gray': '#BCBCBC',
'ei-black-green': '#012424',
},
backgroundImage: {
'gradient-radial':
'radial-gradient(farthest-corner at 300px 400px, var(--tw-gradient-stops))',
},
animation: {
wiggle: 'wiggle 0.3s',
},
keyframes: {
wiggle: {
'20%': { transform: 'translateX(-5%)' },
'40%': { transform: 'translateX(5%)' },
'60%': { transform: 'translateX(-2.5%)' },
'80%': { transform: 'translateX(2.5%)' },
},
},
},
},
plugins: [require('tailwindcss'), require('@tailwindcss/forms')],
};