-
Notifications
You must be signed in to change notification settings - Fork 891
/
Copy pathtailwind.config.js
54 lines (54 loc) · 1.25 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
module.exports = {
darkMode: 'class',
content: [
'./src/**/*.{js,jsx,ts,tsx}',
'./docs/**/*.{mdx, tsx}',
],
theme: {
extend: {
screens: {
xs: '375px',
},
colors: {
'docusaurus-dark': '#1B1B1D',
},
animation: {
circle: 'circle 20s infinite',
'circle-delay-1': '20s circle 2s infinite',
blob: 'blob 7s infinite',
'blob-delay-1': '10s blob 1s infinite',
},
keyframes: {
circle: {
'0%': {
transform: 'translate(0px, 0px) scale(1)',
},
'33%': {
transform: 'translate(10px, -10px) scale(1.1)',
},
'66%': {
transform: 'translate(-5px, 5px) scale(0.9)',
},
'100%': {
transform: 'tranlate(0px, 0px) scale(1)',
},
},
blob: {
'0%': {
transform: 'translate(0px, 0px) scale(1)',
},
'33%': {
transform: 'translate(30px, -50px) scale(1.1)',
},
'66%': {
transform: 'translate(-20px, 20px) scale(0.9)',
},
'100%': {
transform: 'tranlate(0px, 0px) scale(1)',
},
},
},
},
},
plugins: [],
};