-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
41 lines (40 loc) · 967 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ['./src/**/*.{js,ts,jsx,tsx}'],
theme: {
extend: {
keyframes: {
shake: {
'10%': {
width: '120%',
transform: 'rotate(10deg)',
},
'20%': {
width: '120%',
transform: 'rotate(-10deg)',
},
'30%': {
width: '120%',
transform: 'rotate(10deg)',
},
'40%': {
width: '120%',
transform: 'rotate(-10deg)',
},
},
},
colors: {
'main-color': '#8D72E1',
'second-color': '#C0DEFF',
'third-color': '#F5EDCE',
'fouth-color': '#58287F',
'navbar-color': '#1A0000',
},
backgroundImage: {
'gradient-radial':
'backgroung: radial-gradient(ellipse at bottom , main-color 0%, third-color 100%)',
},
},
},
plugins: [],
};