-
Notifications
You must be signed in to change notification settings - Fork 1
/
tailwind.config.js
73 lines (73 loc) · 1.9 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
64
65
66
67
68
69
70
71
72
73
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ['./src/components/*.{js,jsx,ts,tsx}'],
safelist: [
'text-[#D91023]',
'text-[#FFFFFF]',
'text-[#002654]',
'text-[#ED2939]',
'text-[#006434]',
'text-[#C6210B]',
'text-[#000000]',
'text-[#C9243F]',
'text-[#28B858]',
'text-[#014751]',
'text-[#E13A3E]',
'text-[#231F20]',
'text-[#E13A3E]',
'text-[#002B5D]',
'text-[#C81025]',
'text-[#101010]',
'text-[#553184]',
'text-[#D6221B]',
'text-[#C9271A]',
'text-[#2C2079]',
'text-[#26A8E0]'
],
theme: {
extend: {
animation: {
blob: 'blob 7s infinite',
bias: 'bias 10s infinite',
wavey: 'wavey 1000ms linear infinite'
},
keyframes: {
wavey: {
'0%, 100%': {
transform: 'scaleY(0.5)'
},
'50%': {
transform: 'scaleY(1.5)'
}
},
blob: {
'0%': {
transform: 'translate(0px, 0px) scale(1)'
},
'33%': {
transform: 'translate(30px, -50px) scale(1.1)'
},
'66%': {
transform: 'transalte(-20px, 20px) scale(0.9)'
},
'100%': {
transform: 'transalte(0px, 0px) scale(1)'
}
},
bias: {
'0%, 100%': {
'background-size': '100% 100%',
'background-image': 'linear-gradient(to bottom right, MistyRose,NavajoWhite,LightCyan,Thistle,Pink,Salmon,Sienna)',
'background-position': 'left center'
},
'50%': {
'background-size': '300% 300%',
'background-image': 'linear-gradient(to bottom right, MistyRose,NavajoWhite,LightCyan,Thistle,Pink,Salmon,Sienna)',
'background-position': 'right center'
}
}
}
}
},
plugins: [require('./src/plugins/animationDelay')]
};