-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
45 lines (45 loc) · 975 Bytes
/
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
module.exports = {
content: ['./src/**/*.html' /* ... */],
theme: {
extend: {
colors: {
cherry: '#c06c84',
cherrylight: '#cf90a2',
lavenderblush: '#F9F0F3',
beigelight: '#F5F2F0',
},
keyframes: {
wiggle: {
'0%, 100%': {
transform: 'rotate(-3deg)'
},
'50%': {
transform: 'rotate(3deg)'
},
}
},
animation: {
wiggle: 'wiggle 0.5s ease-in-out infinite'
},
typography: (theme) => ({
DEFAULT: {
css: {
// h1: {
// color: '#374151',
// },
// h2: {
// color: '#374151',
// },
// h3: {
// color: '#374151',
// },
// h4: {
// color: '#374151',
// },
}
}
}),
},
},
plugins: [require('@tailwindcss/typography')],
}