-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtailwind.config.js
63 lines (63 loc) · 1.29 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
55
56
57
58
59
60
61
62
63
/** @type {import('tailwindcss').Config} */
export default {
content: ["./src/**/*.{js,ts,jsx,tsx,mdx}"],
theme: {
screens:{
md: {max: '767px'},
lg: {max: '1439px'},
},
extend: {
colors: {
customBlue: "#2196F3",
customWarning: "#ffc107",
customGreen: "#4CAF50",
customRed: "#DA1E28",
customGrey: "#9E9E9E",
},
borderRadius: {
10: "40px",
},
opacity: {
3: "0.03",
},
width: {
6.5: "26px",
},
height: {
6.5: "26px",
},
boxShadow: {
'cards': '0px 0px 30px 0px rgba(0, 0, 0, 0.3)',
},
keyframes: {
arrival:{
'0%, 100%': {
transform: 'translateX(200px)'
},
'20%, 80%': {
transform: 'translateX(-256px)'
}
},
fadeIn: {
'0%': {
transform: 'scale(0.8)',
opacity: 0,
},
'40%': {
transform: 'scale(1.05)',
opacity: 0.75,
},
'100%': {
transform: 'scale(1)',
opacity: 1,
}
}
},
animation: {
messageArrival: 'arrival 5s ease-in-out',
fadeIn: 'fadeIn 1s'
}
},
},
plugins: [],
};