-
Notifications
You must be signed in to change notification settings - Fork 28
Expand file tree
/
Copy pathtailwind.config.js
More file actions
53 lines (53 loc) · 1.16 KB
/
tailwind.config.js
File metadata and controls
53 lines (53 loc) · 1.16 KB
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
/* eslint-disable node/no-unpublished-require */
module.exports = {
content: [
'./src/app/**/*.{js,ts,jsx,tsx,mdx}',
'./src/components/**/*.{js,ts,jsx,tsx}',
],
darkMode: 'media',
theme: {
minWidth: {
40: '10rem',
60: '15rem',
80: '20rem',
100: '25rem',
},
maxWidth: {
120: '30rem',
160: '40rem',
200: '50rem',
},
extend: {
backgroundImage: {
macDesktop:
"url('https://wallpapershome.com/images/wallpapers/macos-big-sur-1280x720-dark-wwdc-2020-22655.jpg')",
},
animation: {
blob: 'blob 10s infinite',
},
keyframes: {
blob: {
'0%': {
transform: 'translate(0px, 0px) scale(1)',
},
'33%': {
transform: 'translate(30px, -50px) scale(1.2)',
},
'66%': {
transform: 'translate(-40px, 40px) scale(0.8)',
},
'100%': {
transform: 'translate(0px, 0px) scale(1)',
},
},
},
},
},
variants: {
extend: {},
},
plugins: [
require('@tailwindcss/typography'),
require('tailwindcss-textshadow'),
],
}