-
Notifications
You must be signed in to change notification settings - Fork 2
/
tailwind.config.js
61 lines (60 loc) · 1.58 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
const { title } = require('process')
module.exports = {
content: ['./client/**/*.{html,jsx,tsx}', './index.html'],
theme: {
extend: {
colors: {
purple: '#464FA3',
lightPurple: '#606EEF',
pink: '#FBEAF3',
darkPink: '#F2BAD8',
white: '#FFFFF',
},
fontFamily: {
primary: 'Cherry Bomb One',
secondary: 'VarelaRound',
body: 'PTSans-Regular',
},
backgroundImage: {
space: 'url(/image/background3.png)',
},
backgroundPosition: {
rightbackgroundImage: 'right 3000px',
},
minHeight: {
'1/2': '100px',
},
margin: {
8: '2rem',
9: '2.25rem',
},
keyframes: {
wave: {
'0%': { transform: 'rotate(0.0deg)' },
'10%': { transform: 'rotate(14deg)' },
'20%': { transform: 'rotate(-8deg)' },
'30%': { transform: 'rotate(14deg)' },
'40%': { transform: 'rotate(-4deg)' },
'50%': { transform: 'rotate(10.0deg)' },
'60%': { transform: 'rotate(0.0deg)' },
'100%': { transform: 'rotate(0.0deg)' },
},
float: {
'0%, 100%': {
transform: 'translateY(-3%)',
animationTimingFunction: 'cubic-bezier(0.8, 1, 1, 1)',
},
'80%': {
transform: 'none',
animationTimingFunction: 'cubic-bezier(0, 0, 0.2, 0)',
},
},
},
animation: {
'waving-hand': 'wave 2s linear infinite',
floating: 'float 5s infinite',
},
},
},
plugins: [],
}