-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
59 lines (58 loc) · 1.45 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
/** @type {import('tailwindcss').Config} */
export default {
content: ['./src/**/*.{html,js,svelte,ts}'],
theme: {
extend: {
blur: {
xs: '120px',
},
animation: {
randommovement: 'random 200s ease-in-out infinite',
randommovementDifferent:"random2 120s ease-in-out infinite"
},
keyframes: {
random: {
"0%": {
transform: "translate(300%, 0%) scale(1)"
},
"30%" : {
transform: "translate(20%, 100%) scale(1.3)"
},
"50%": {
transform: "translate(40%, 80%) scale(1)"
},
"70%": {
transform: "translate(100%, 300%) scale(3)"
},
"90%": {
transform: "translate(20% -200%) scale(2)"
},
"100%": {
transform: "translate(0%, 0%) scale(1)"
}
},
random2: {
"0%": {
transform: "translate(0%, 0%) scale(1)"
},
"30%" : {
transform: "translate(150%, 15%) scale(1.3)"
},
"50%": {
transform: "translate(44%, 10%) scale(1)"
},
"70%": {
transform: "translate(140%, 0%) scale(3)"
},
"90%": {
transform: "translate(-135%-20%) scale(2)"
},
"100%": {
transform: "translate(0%, 0%) scale(1)"
}
}
}
}
},
plugins: [],
}